Пример #1
0
 public static OclClassifier Collection(OclCollectionKind kind, OclClassifier elementType)
 {
     return(new OclCollectionType(kind, elementType));//TODO: cache
 }
Пример #2
0
 private OclCollectionType(OclCollectionKind kind, OclClassifier elementType)
 {
     this.kind        = kind;
     this.elementType = elementType;
 }