Klasse GroovyBinding
java.lang.Object
groovy.lang.GroovyObjectSupport
de.uplanet.lucy.server.businesslogic.util.scriptable.GroovyBinding
- Alle implementierten Schnittstellen:
groovy.lang.GroovyObject
@Scriptable
public class GroovyBinding
extends groovy.lang.GroovyObjectSupport
-
Konstruktorübersicht
Konstruktoren -
Methodenübersicht
Modifizierer und TypMethodeBeschreibungReturns a value of the given binding.Returns the value of the binding.getProperty(String p_strKey) booleanisAvailable(String p_strKey) voidvoidsetProperty(String p_strKey, Object p_value) Von Klasse geerbte Methoden groovy.lang.GroovyObjectSupport
getMetaClass, setMetaClassVon Klasse geerbte Methoden java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitVon Schnittstelle geerbte Methoden groovy.lang.GroovyObject
invokeMethod
-
Konstruktordetails
-
GroovyBinding
public GroovyBinding(de.uplanet.lucy.server.binding.IBinding p_binding)
-
-
Methodendetails
-
get
Returns a value of the given binding.- Parameter:
p_strKey- The binding key.- Gibt zurück:
- The value or
nullif no value found for the binding.
-
get
Returns the value of the binding.- Parameter:
p_strKey- The binding key.p_fallback- The fallback value. Will returned when no value found or the binding value isnull.- Gibt zurück:
- The binding value or the given fallback value for a not
existing or an
nullbinding value.
-
isAvailable
- Parameter:
p_strKey- The binding key.- Gibt zurück:
- Returns
trueif an binding value exists otherwisefalse.
-
getProperty
-
setProperty
- Löst aus:
UnsupportedOperationException- Since the binding is read-only.
-
getAt
-
putAt
- Löst aus:
UnsupportedOperationException- Since the binding is read-only.
-