com.borland.jbuilder.jot
Interface JotVariable

All Known Subinterfaces:
JotField, JotFieldDeclaration, JotVariableDeclaration

public interface JotVariable

This interface represents a variable reference.


Method Summary
 java.lang.String getFullName()
          Returns the full name of the variable reference including any target references, e.g.
 java.lang.String getMemberName()
          Returns the name of the referenced variable.
 java.lang.String getName()
          Returns the name of this variable.
 java.lang.String getObjectName()
          Returns the target reference of the variable reference.
 JotType getType()
          Returns the type of this variable.
 

Method Detail

getName

public java.lang.String getName()
Returns the name of this variable. Equivalent to getMemberName().

getType

public JotType getType()
Returns the type of this variable.

getObjectName

public java.lang.String getObjectName()
Returns the target reference of the variable reference. The object name does not include the actual name of the variable. For example, given the variable reference foo.bar, returns foo.

getMemberName

public java.lang.String getMemberName()
Returns the name of the referenced variable. The method name does not include the name of the target. For example, given the variable reference foo.bar, returns bar.

getFullName

public java.lang.String getFullName()
Returns the full name of the variable reference including any target references, e.g. foo.bar.