Searched refs:get (Results 1 - 25 of 60) sorted by relevance

123

/owl-s/src/impl/owl/
H A DCastingList.java55 public Object get(int index) { method in class:CastingList
56 return ((OWLObject) super.get(index)).castTo(castTarget);
75 return get(i.previousIndex());
80 return get(i.nextIndex());
99 result[i] = get(i);
111 a[i] = get(i);
H A DOWLDataValueListImpl.java50 return (OWLDataValue) get(index);
H A DOWLIndividualListImpl.java61 return (OWLIndividual) get(index);
H A DWrappingList.java119 public Object get(int index) { method in class:WrappingList
120 return baseList.get(index);
/owl-s/src/impl/owls/process/
H A DResultListImpl.java49 return (Result) get(index);
H A DConditionListImpl.java52 return (Condition) get(index);
H A DProcessListImpl.java28 return (Process) get(index);
/owl-s/src/impl/owls/process/parameter/
H A DInputListImpl.java49 return (Input) get(index);
H A DOutputListImpl.java52 return (Output) get(index);
H A DParameterListImpl.java60 return (Parameter) get(index);
/owl-s/src/impl/owls/process/binding/
H A DBindingListImpl.java30 return (Binding) get(index);
74 Binding binding = (Binding) list.get(index);
/owl-s/src/org/mindswap/owl/
H A DOWLConfig.java46 * language is chosen getProperty(prop, lang) can be used to get literal value
102 return (OWLObjectConverter) converters.get(javaClass);
123 return (OWLTransformator) transformators.get(owlClass);
/owl-s/src/impl/owls/grounding/
H A DAtomicGroundingListImpl.java26 return (AtomicGrounding) get(index);
H A DMessageMapListImpl.java44 return (MessageMap) get(index);
/owl-s/src/org/mindswap/owl/list/
H A DRDFList.java56 public OWLIndividual get(int index); method in interface:RDFList
/owl-s/src/org/mindswap/query/
H A DValueMap.java91 return (OWLValue) map.get( var );
102 return (OWLDataValue) map.get( var );
110 return map.get( var ).toString();
125 return (OWLIndividual) map.get( var );
/owl-s/src/examples/
H A DOWLSValidator.java92 Service service = (Service) services.get(i);
157 return (String) serviceURIs.get(serviceURIs.size() - 1);
161 List list = (List) table.get(key);
/owl-s/src/org/mindswap/wsdl/
H A DWSDLService.java148 parameters = (Parameters) bEntry.getParameters().get(o);
152 Parameter p = (Parameter) parameters.list.get(j);
242 Port port = (Port) ports.get(name);
246 Object obj = list.get(i);
252 return (Port) ports.get(name);
267 return (WSDLOperation) operations.get(opName);
/owl-s/src/org/mindswap/owls/validator/
H A DOWLSValidatorReport.java46 Set msgSet = (Set)mMessageMap.get(key);
/owl-s/src/impl/jena/
H A DJenaOWLFactory.java59 return reasoners.get(reasonerName);
/owl-s/src/impl/owls/process/constructs/
H A DControlConstructBagImpl.java73 return (ControlConstruct) get(index);
H A DControlConstructImpl.java78 // get bindings for flows to this perform
81 // get bindings for flows going out of this perform
85 ValueOf valueOf = new ValueOfImpl((OWLIndividual) list.get(index));
H A DControlConstructListImpl.java74 return (ControlConstruct) get(index);
/owl-s/src/org/mindswap/shop/
H A DSHOPTranslator.java67 writeProcess((Process) processes.get(i));
112 String mappedValue = (String) valueMap.get(p);
119 String mappedValue = (String) valueMap.get(p);
/owl-s/src/impl/owls/process/execution/
H A DProcessExecutionEngineImpl.java375 ValueMap prevParentPerform = (ValueMap) performResults.get(OWLS.Process.TheParentPerform);
376 // ValueMap prevThisPerform = (ValueMap) performResults.get(OWLS.Process.ThisPerform);
395 ValueMap performResult = (ValueMap) performResults.get(perform);
409 // values.addMap( (ValueMap) performResults.get( OWLS.Process.ThisPerform ) );
427 ValueMap prevThisPerform = (ValueMap) performResults.get(OWLS.Process.ThisPerform);
443 ValueMap performResult = (ValueMap) performResults.get(otherPerform);
480 ValueMap values = (ValueMap) performResults.get( OWLS.Process.ThisPerform );
496 ValueMap performResult = (ValueMap) performResults.get(otherPerform);
598 ValueMap parentValues = (ValueMap) performResults.get(OWLS.Process.TheParentPerform);
607 ValueMap performResult = (ValueMap) performResults.get(otherPerfor
[all...]

Completed in 51 milliseconds

123