FileDocCategorySizeDatePackage
Variable.javaAPI DocGlassfish v2 API2921Fri May 04 22:35:08 BST 2007com.sun.jdo.spi.persistence.support.sqlstore.query.util.scope

Variable

public class Variable extends Definition
An object of class Variable is used if an identifier is declared as variable.
author
Michael Bouschen
version
0.1

Fields Summary
Constructors Summary
public Variable(com.sun.jdo.spi.persistence.support.sqlstore.query.util.type.Type type)

        super(type);
    
Methods Summary
public java.lang.StringgetName()

		return I18NHelper.getMessage(messages, "scope.variable.getname.name"); //NOI18N
	
public java.lang.StringtoString()

        StringBuffer buf = new StringBuffer();
        buf.append("Variable("); //NOI18N
        buf.append(scope);
        buf.append(", "); //NOI18N
        buf.append(type);
        buf.append(")"); //NOI18N
        return buf.toString();