コード例 #1
0
ファイル: methodoperand.cs プロジェクト: ArildF/masters
        internal MethodOperand(
                              IQuery opnd,
                              FT ftype) {
            _FType= ftype;
            _Opnd = opnd; 

        }
コード例 #2
0
 internal MethodOperand(
     IQuery opnd,
     FT ftype)
 {
     _FType = ftype;
     _Opnd  = opnd;
 }
コード例 #3
0
 internal NumberFunctions(IQuery qy)
 {
     _qy       = qy;
     _FuncType = FT.FuncNumber;
 }
コード例 #4
0
 internal NumberFunctions(IQuery qy,
                          FT ftype)
 {
     _qy       = qy;
     _FuncType = ftype;
 }
コード例 #5
0
 internal StringFunctions(ArrayList qy,
                          System.Xml.XPath.Function.FunctionType ftype)
 {
     _ArgList  = qy;
     _FuncType = ftype;
 }
コード例 #6
0
 internal BooleanFunctions(IQuery qy)
 {
     _qy       = qy;
     _FuncType = FT.FuncBoolean;
 }
コード例 #7
0
 internal BooleanFunctions(IQuery qy, FT ftype)
 {
     _qy       = qy;
     _FuncType = ftype;
 }
コード例 #8
0
ファイル: numberfunctions.cs プロジェクト: ArildF/masters
 internal NumberFunctions(IQuery qy) {
     _qy = qy;
     _FuncType = FT.FuncNumber;
 }
コード例 #9
0
ファイル: numberfunctions.cs プロジェクト: ArildF/masters
 internal NumberFunctions(IQuery qy,
                          FT ftype) {
     _qy = qy;
     _FuncType = ftype;
 }
コード例 #10
0
ファイル: stringfunctions.cs プロジェクト: ArildF/masters
 internal StringFunctions(ArrayList qy, 
                          System.Xml.XPath.Function.FunctionType ftype) {
     _ArgList = qy;
     _FuncType = ftype;
 }
コード例 #11
0
ファイル: booleanfunctions.cs プロジェクト: ArildF/masters
 internal BooleanFunctions(IQuery qy) {
     _qy = qy;
     _FuncType = FT.FuncBoolean;
 }
コード例 #12
0
ファイル: booleanfunctions.cs プロジェクト: ArildF/masters
 internal BooleanFunctions(IQuery qy, FT ftype) {
     _qy = qy;
     _FuncType = ftype;
 }