|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectedu.mit.csail.sdg.alloy4viz.AlloyModel
public final class AlloyModel
Immutable; represents an Alloy model.
Thread Safety: Can be called only by the AWT event thread.
Constructor Summary | |
---|---|
AlloyModel(java.util.Collection<AlloyType> types,
java.util.Collection<AlloySet> sets,
java.util.Collection<AlloyRelation> rels,
AlloyModel old)
Construct a new AlloyModel object. |
|
AlloyModel(java.util.Collection<AlloyType> types,
java.util.Collection<AlloySet> sets,
java.util.Collection<AlloyRelation> rels,
java.util.Map<AlloyType,AlloyType> map)
Construct a new AlloyModel object. |
Method Summary | |
---|---|
boolean |
equals(java.lang.Object other)
Two AlloyModel objects are equal if they have the same types, sets, relations, and extension relationship. |
ConstList<AlloyType> |
getDirectSubTypes(AlloyType type)
Returns a sorted, unmodifiable list of types that are direct subtypes of the given type. |
java.util.Set<AlloyRelation> |
getRelations()
Returns an unmodifiable sorted set of all AlloyRelation(s) in this model. |
java.util.Set<AlloySet> |
getSets()
Returns an unmodifiable sorted set of all AlloySet(s) in this model. |
ConstList<AlloyType> |
getSubTypes(AlloyType type)
Returns a sorted, unmodifiable list of types that are direct or indirect subtypes of the given type. |
AlloyType |
getSuperType(AlloyType type)
If type==univ, return null; otherwise, return a nonnull AlloyType object representing its super type. |
AlloyType |
getTopmostSuperType(AlloyType type)
If type==univ, return null; otherwise, return a nonnull AlloyType object representing its topmost non-univ super type. |
java.util.Set<AlloyType> |
getTypes()
Returns an unmodifiable sorted set of all AlloyType(s) in this model. |
int |
hashCode()
Compute a hashcode based on the types, sets, relations, and the extension relationship. |
AlloyRelation |
hasRelation(java.lang.String name,
java.util.List<AlloyType> types)
Returns the AlloyRelation object if this model contains the given relation; or return null otherwise. |
AlloySet |
hasSet(java.lang.String name,
AlloyType type)
Returns the AlloyRelation object if this model contains the given relation; or return null otherwise. |
boolean |
hasType(AlloyType type)
Returns true if this model contains the given type. |
AlloyType |
hasType(java.lang.String name)
Returns the AlloyType object if this model contains the given type; or return null otherwise. |
static boolean |
isCycle(java.util.Map<AlloyType,AlloyType> map,
AlloyType x)
Returns true iff the nodes x, map.get(x), map.get(map.get(x))... |
boolean |
isDirectSubtype(AlloyType subType,
AlloyType superType)
Returns true iff "subType" is a direct subsig of "superType". |
boolean |
isEqualOrSubtype(AlloyType subType,
AlloyType superType)
Returns true iff "subType" is equal to, or is a direct or indirect subsig of "superType". |
boolean |
isSubtype(AlloyType subType,
AlloyType superType)
Returns true iff "subType" is a direct or indirect subsig of "superType". |
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public AlloyModel(java.util.Collection<AlloyType> types, java.util.Collection<AlloySet> sets, java.util.Collection<AlloyRelation> rels, java.util.Map<AlloyType,AlloyType> map)
types
- - the types; we will always add "univ" to it if it's not there alreadysets
- - the setsrels
- - the relationsmap
- - we consult this "sig to parent sig" map and extract the mappings relevant to this model.
(If we detect a cycle, we will arbitrarily break the cycle)public AlloyModel(java.util.Collection<AlloyType> types, java.util.Collection<AlloySet> sets, java.util.Collection<AlloyRelation> rels, AlloyModel old)
types
- - the types ; we will always add "univ" to it if it's not there alreadysets
- - the setsrels
- - the relationsold
- - we consult this model's "sig to parent sig" map, and extract the mappings relevant to this model.Method Detail |
---|
public static boolean isCycle(java.util.Map<AlloyType,AlloyType> map, AlloyType x)
map
- - a map from AlloyType to AlloyTypex
- - the AlloyType object we want to checkpublic AlloyType getSuperType(AlloyType type)
public AlloyType getTopmostSuperType(AlloyType type)
Thus, if "type" is in this model, but its supertype is univ, then we'll return type as-is.
Note: if "type" does not exist in this model, we'll return it as-is.
public ConstList<AlloyType> getSubTypes(AlloyType type)
public ConstList<AlloyType> getDirectSubTypes(AlloyType type)
public boolean isSubtype(AlloyType subType, AlloyType superType)
public boolean isDirectSubtype(AlloyType subType, AlloyType superType)
public boolean isEqualOrSubtype(AlloyType subType, AlloyType superType)
public boolean equals(java.lang.Object other)
equals
in class java.lang.Object
public int hashCode()
hashCode
in class java.lang.Object
public boolean hasType(AlloyType type)
public AlloyType hasType(java.lang.String name)
public AlloySet hasSet(java.lang.String name, AlloyType type)
public AlloyRelation hasRelation(java.lang.String name, java.util.List<AlloyType> types)
public java.util.Set<AlloyType> getTypes()
public java.util.Set<AlloySet> getSets()
public java.util.Set<AlloyRelation> getRelations()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |