Uses of Interface
com.sodius.mdw.core.model.MDWSet

Packages that use MDWSet
com.sodius.mdw.core.model Contains the model framework to manage model, metamodel and related model elements. 
 

Uses of MDWSet in com.sodius.mdw.core.model
 

Classes in com.sodius.mdw.core.model that implement MDWSet
 class DefaultMDWSet<E>
          Default MDWSet implementation based on a HashSet.
 

Methods in com.sodius.mdw.core.model that return MDWSet
 MDWSet<E> MDWSet.copy()
          Copies all of the elements of the receiver Set to a newly created one.
<T extends E>
MDWSet<T>
MDWSet.getInstances(EClass type)
          Selects MDWObject instances of this Set of the specified type.
<T extends E>
MDWSet<T>
MDWSet.getInstances(EClass type, boolean includeSubTypes)
          Selects MDWObject instances of this Set of the specified type, or one of its sub types.
<T extends E>
MDWSet<T>
MDWSet.getInstances(String typeName)
          Selects MDWObject instances of this Set of the specified type.
<T extends E>
MDWSet<T>
MDWSet.getInstances(String typeName, boolean includeSubTypes)
          Selects MDWObject instances of this Set of the specified type, or one of its sub types.
<T extends E>
MDWSet<T>
MDWSet.getProfiledInstances(EClass type, String profileName)
          Selects MDWObject instances of this Set of the specified type, which match the specified profile name.
<T extends E>
MDWSet<T>
MDWSet.getProfiledInstances(EClass type, String profileName, boolean includeSubTypes)
          Selects MDWObject instances of this Set of the specified type, or one of its sub types, which match the specified profile name.
<T extends E>
MDWSet<T>
MDWSet.getProfiledInstances(String typeName, String profileName)
          Selects MDWObject instances of this Set of the specified type, which match the specified profile name.
<T extends E>
MDWSet<T>
MDWSet.getProfiledInstances(String typeName, String profileName, boolean includeSubTypes)
          Selects MDWObject instances of this Set of the specified type, or one of its sub types, which match the specified profile name.
 MDWSet<E> MDWSet.reject(EStructuralFeature feature, Object value)
          Rejects MDWObject instances of this Set whose feature does not match the specified value.
 MDWSet<E> MDWSet.reject(String scriptName, List<?> arguments, Object value)
          Rejects MDWObject instances of this Set whose script evaluation result does not match the specified value.
 MDWSet<E> MDWSet.reject(String scriptName, Object value)
          Rejects MDWObject instances of this Set whose script evaluation result does not match the specified value.
 MDWSet<E> MDWSet.select(EStructuralFeature feature, Object value)
          Selects MDWObject instances of this Set whose feature matches the specified value.
 MDWSet<E> MDWSet.select(String scriptName, List<?> arguments, Object value)
          Selects MDWObject instances of this Set whose script evaluation result matches the specified value.
 MDWSet<E> MDWSet.select(String scriptName, Object value)
          Selects MDWObject instances of this Set whose script evaluation result matches the specified value.
 MDWSet<E> MDWList.toSet()
          Converts this list to a new modifiable MDWSet.
<T> MDWSet<T>
MDWObject.toSet(String scriptName)
          Invokes the specified script and returns a MDWSet representation of the evaluation result.
<T> MDWSet<T>
MDWObject.toSet(String scriptName, List<?> arguments)
          Invokes the specified script and returns a MDWSet representation of the evaluation result.