コード例 #1
0
 public SparqlInstanceOfDefinedClass(DLToOWLNameConv owlNC, string freeVarId, string clsname, string emptyVarId, bool useTypeOf)
     : base(owlNC, freeVarId)
 {
     this.useTypeOf  = useTypeOf;
     this.clsname    = clsname;
     this.emptyVarId = emptyVarId;
 }
コード例 #2
0
 public SparqlRelatedToInstance(DLToOWLNameConv owlNC, string freeVarId, string instName, string role, bool isInversed)
     : base(owlNC, freeVarId)
 {
     this.instName   = instName;
     this.role       = role;
     this.isInversed = isInversed;
 }
コード例 #3
0
 public SparqlRelatedToVariable(DLToOWLNameConv owlNC, string freeVarId, string variableId, string role, bool isInversed, bool useDistinct = false)
     : base(owlNC, freeVarId)
 {
     this.variableId  = variableId;
     this.role        = role;
     this.isInversed  = isInversed;
     this.useDistinct = useDistinct;
 }
コード例 #4
0
 public SparqlRelatedToValueFilter(DLToOWLNameConv owlNC, string freeVarId, string attribute, string bound, string varVarId, CNL.DL.Value value)
     : base(owlNC, freeVarId)
 {
     this.attribute = attribute;
     this.value     = value;
     this.varVarId  = varVarId;
     this.bound     = bound;
 }
コード例 #5
0
 public SparqlNot(DLToOWLNameConv owlNC, string freeVarId, SparqlNode node)
     : base(owlNC, freeVarId)
 {
     this.node = node;
 }
コード例 #6
0
 public SparqlOr(DLToOWLNameConv owlNC, string freeVarId, List <SparqlNode> nodes)
     : base(owlNC, freeVarId)
 {
     this.nodes = nodes;
 }
コード例 #7
0
 public SparqlConstantInstance(DLToOWLNameConv owlNC, string freeVarId, string instName, bool useTypeOf)
     : base(owlNC, freeVarId)
 {
     this.useTypeOf = useTypeOf;
     this.instName  = instName;
 }
コード例 #8
0
 public SparqlTop(DLToOWLNameConv owlNC, string freeVarId)
     : base(owlNC, freeVarId)
 {
 }
コード例 #9
0
 public SparqlNode(DLToOWLNameConv owlNC, string freeVarId)
 {
     this.freeVarId = freeVarId; this.owlNC = owlNC;
 }
コード例 #10
0
ファイル: dl.to.jena.cs プロジェクト: jswiatkowski/cognipy
 public void setOWLDataFactory(DLToOWLNameConv owlNC)
 {
     this.owlNC = owlNC;
 }
コード例 #11
0
ファイル: dl.to.jena.cs プロジェクト: jswiatkowski/cognipy
 public JenaAnd(DLToOWLNameConv owlNC, string freeVarId, List <JenaNode> nodes)
     : base(owlNC, freeVarId)
 {
     this.nodes = nodes;
 }
コード例 #12
0
ファイル: dl.to.jena.cs プロジェクト: jswiatkowski/cognipy
 public JenaTotal(DLToOWLNameConv owlNC, string freeVarId, string dt)
     : base(owlNC, freeVarId)
 {
     this.dt = dt;
 }
コード例 #13
0
ファイル: dl.to.jena.cs プロジェクト: jswiatkowski/cognipy
 public JenaTop(DLToOWLNameConv owlNC, string freeVarId)
     : base(owlNC, freeVarId)
 {
 }
コード例 #14
0
ファイル: dl.to.jena.cs プロジェクト: jswiatkowski/cognipy
 public JenaInstanceOfDefinedClass(DLToOWLNameConv owlNC, string freeVarId, string clsname, string emptyVarId)
     : base(owlNC, freeVarId)
 {
     this.clsname    = clsname;
     this.emptyVarId = emptyVarId;
 }