org.inxar.jenesis
Interface Accessor
- All Superinterfaces:
- Codeable, Expression, Variable
- All Known Subinterfaces:
- ArrayAccess, FieldAccess, Invoke
- public interface Accessor
- extends Variable
Expression
subinterface for expressions which access
data including field accesses, array accesses, and method
invocations. An Accessor
expression has two parts
with the general form dot . The qualifier
references the handle to object where the resource resides and the
name references the name of the resource. For example, in
this.id
, this
is the qualifier and
id
is the name. The qualifier is optional, in which
case the Accessor
will render without the dot.
Method Summary |
java.lang.String |
getQualifier()
Sets the qualified name of the resource container object. |
void |
setQualifier(java.lang.String name)
Sets the qualified name of the resource container object. |
setQualifier
public void setQualifier(java.lang.String name)
- Sets the qualified name of the resource container object.
getQualifier
public java.lang.String getQualifier()
- Sets the qualified name of the resource container object.