Ejemplo n.º 1
0
 public static OclClassifier Collection(OclCollectionKind kind, OclClassifier elementType)
 {
     return(new OclCollectionType(kind, elementType));//TODO: cache
 }
Ejemplo n.º 2
0
 private OclCollectionType(OclCollectionKind kind, OclClassifier elementType)
 {
     this.kind        = kind;
     this.elementType = elementType;
 }