Package org.eclipse.epsilon.emc.bibtex
Class BibtexPropertyGetter
java.lang.Object
org.eclipse.epsilon.eol.execute.introspection.AbstractPropertyGetter
org.eclipse.epsilon.emc.bibtex.BibtexPropertyGetter
- All Implemented Interfaces:
IPropertyGetter
- Since:
- 1.6
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
hasProperty
(Object object, String property, IEolContext context) Convenience method for checking whether a property exists.invoke
(Object object, String property, IEolContext context) Invokes a property on a model element.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.eclipse.epsilon.eol.execute.introspection.IPropertyGetter
hasProperty, invoke
-
Constructor Details
-
BibtexPropertyGetter
public BibtexPropertyGetter()
-
-
Method Details
-
hasProperty
Description copied from interface:IPropertyGetter
Convenience method for checking whether a property exists.- Parameters:
object
- The model element.property
- The property name of the model element.context
- The execution context.- Returns:
true
if the property exists,false
otherwise.
-
invoke
public Object invoke(Object object, String property, IEolContext context) throws EolRuntimeException Description copied from interface:IPropertyGetter
Invokes a property on a model element.- Parameters:
object
- The model element.property
- The property name of the model element.context
- The execution context.- Returns:
- The value of the requested property.
- Throws:
EolIllegalPropertyException
- If the property could not be found.EolRuntimeException
- If an exception occurs when querying the model for the property.
-