|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectedu.mit.csail.sdg.alloy4viz.AlloyInstance
public final class AlloyInstance
Immutable; represents an Alloy instance that can be displayed in the visualizer.
Thread Safety: Can be called only by the AWT event thread.
Field Summary | |
---|---|
java.lang.String |
commandname
The original command that generated this instance; can be "" if unknown. |
java.lang.String |
filename
The original filename of the model that generated this instance; can be "" if unknown. |
boolean |
isMetamodel
If true, it is a metamodel, else it is not a metamodel. |
AlloyModel |
model
The AlloyModel that this AlloyInstance is an instance of. |
Constructor Summary | |
---|---|
AlloyInstance(A4Solution originalA4,
java.lang.String filename,
java.lang.String commandname,
AlloyModel model,
java.util.Map<AlloyAtom,java.util.Set<AlloySet>> atom2sets,
java.util.Map<AlloyRelation,java.util.Set<AlloyTuple>> rel2tuples,
boolean isMetamodel)
Create a new instance. |
Method Summary | |
---|---|
java.util.List<AlloySet> |
atom2sets(AlloyAtom atom)
Returns an unmodifiable sorted list of AlloySet(s) that this atom is in; answer can be an empty list. |
boolean |
equals(java.lang.Object other)
Two instances are equal if they have the same filename, same commands, same model, and same atoms and tuples relationships. |
java.util.Set<AlloyAtom> |
getAllAtoms()
Returns an unmodifiable sorted set of all AlloyAtoms in this AlloyInstance. |
int |
hashCode()
Computes a hash code based on the same information used in equals(). |
java.util.Set<AlloyTuple> |
relation2tuples(AlloyRelation rel)
Returns an unmodifiable sorted set of AlloyTuple(s) in this relation; answer can be an empty set. |
java.util.List<AlloyAtom> |
set2atoms(AlloySet set)
Returns an unmodifiable sorted list of AlloyAtom(s) in this set; answer can be an empty list. |
java.lang.String |
toString()
Returns a textual dump of the instance. |
java.util.List<AlloyAtom> |
type2atoms(AlloyType type)
Returns an unmodifiable sorted list of AlloyAtom(s) in this type; answer can be an empty list. |
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
public final boolean isMetamodel
public final java.lang.String filename
public final java.lang.String commandname
public final AlloyModel model
Constructor Detail |
---|
public AlloyInstance(A4Solution originalA4, java.lang.String filename, java.lang.String commandname, AlloyModel model, java.util.Map<AlloyAtom,java.util.Set<AlloySet>> atom2sets, java.util.Map<AlloyRelation,java.util.Set<AlloyTuple>> rel2tuples, boolean isMetamodel)
filename
- - the original filename of the model that generated this instance; can be "" if unknowncommandname
- - the original command that generated this instance; can be "" if unknownmodel
- - the AlloyModel that this AlloyInstance is an instance ofatom2sets
- - maps each atom to the set(s) it is in; its KeySet is considered the universe of all atomsrel2tuples
- - maps each relation to the tuple(s) it is in
(The constructor will ignore any atoms, sets, types, and relations not in the model. So there's no need to explicitly filter them out prior to passing "atom2sets" and "rel2tuples" to the constructor.)
Method Detail |
---|
public java.util.Set<AlloyAtom> getAllAtoms()
public java.util.List<AlloySet> atom2sets(AlloyAtom atom)
public java.util.List<AlloyAtom> type2atoms(AlloyType type)
public java.util.List<AlloyAtom> set2atoms(AlloySet set)
public java.util.Set<AlloyTuple> relation2tuples(AlloyRelation rel)
public boolean equals(java.lang.Object other)
equals
in class java.lang.Object
public int hashCode()
hashCode
in class java.lang.Object
public java.lang.String toString()
toString
in class java.lang.Object
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |