Lines Matching refs:args
172 SWRLDataObject[] args = new SWRLDataObject[ argCount ];
175 args[i] = getDataObject( arg, binding );
179 newAtom = swrl.createEqual( args[0], args[1] );
181 newAtom = swrl.createNotEqual( args[0], args[1] );
183 newAtom = swrl.createGreaterThan( args[0], args[1] );
185 newAtom = swrl.createGreaterThanOrEqual( args[0], args[1] );
187 newAtom = swrl.createLessThan( args[0], args[1] );
189 newAtom = swrl.createLessThanOrEqual( args[0], args[1] );
191 newAtom = swrl.createAdd( args[0], args[1], args[2] );
193 newAtom = swrl.createSubtract( args[0], args[1], args[2] );