Esempio n. 1
0
 public KeStructuralProperty(KeStructureType declaringType, string name, KeTypeReference type)
     : base(declaringType, name, type)
 {
 }
Esempio n. 2
0
 public KeNavigationProperty(KeStructureType declaringType, string name, KeTypeReference type, bool contains)
     : base(declaringType, name, type)
 {
     ContainsTarget = contains;
 }
Esempio n. 3
0
 protected KeProperty(KeStructureType declaringType, string name, KeTypeReference type)
 {
     PropertyName  = name;
     PropertyType  = type;
     DeclaringType = declaringType;
 }
Esempio n. 4
0
 public KeReturnType(KeTypeReference returnType)
 {
     Type = returnType;
 }
Esempio n. 5
0
 public KeTerm(KeSchema schema, string name, KeTypeReference type)
     : base(schema, name)
 {
 }
Esempio n. 6
0
 public KeTerm(string namespaceName, string name, KeTypeReference type)
     : base(namespaceName, name)
 {
 }
Esempio n. 7
0
 public KeParameter(KeOperation declaringOperation, string name, KeTypeReference type)
     : base(name)
 {
     DeclaringOperation = declaringOperation;
     Type = type;
 }