Package ghidra.plugins.importer.batch
Class BatchGroupLoadSpec
- java.lang.Object
-
- ghidra.plugins.importer.batch.BatchGroupLoadSpec
-
- All Implemented Interfaces:
java.lang.Comparable<BatchGroupLoadSpec>
public class BatchGroupLoadSpec extends java.lang.Object implements java.lang.Comparable<BatchGroupLoadSpec>
Similar to aLoadSpec
, but not associated with aLoader
.This has the same information as a
LoadSpec
, but for all the members of aBatchGroup
.
-
-
Field Summary
Fields Modifier and Type Field Description LanguageCompilerSpecPair
lcsPair
boolean
preferred
-
Constructor Summary
Constructors Constructor Description BatchGroupLoadSpec(LoadSpec loadSpec)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
compareTo(BatchGroupLoadSpec o)
boolean
equals(java.lang.Object obj)
int
hashCode()
boolean
matches(LoadSpec loadSpec)
java.lang.String
toString()
-
-
-
Field Detail
-
lcsPair
public LanguageCompilerSpecPair lcsPair
-
preferred
public boolean preferred
-
-
Constructor Detail
-
BatchGroupLoadSpec
public BatchGroupLoadSpec(LoadSpec loadSpec)
-
-
Method Detail
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
matches
public boolean matches(LoadSpec loadSpec)
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equals
in classjava.lang.Object
-
compareTo
public int compareTo(BatchGroupLoadSpec o)
- Specified by:
compareTo
in interfacejava.lang.Comparable<BatchGroupLoadSpec>
-
-