org.concord.util.script
Class ImportDeclaration

java.lang.Object
  |
  +--org.concord.util.script.ScriptObject
        |
        +--org.concord.util.script.Statement
              |
              +--org.concord.util.script.ImportDeclaration
All Implemented Interfaces:
java.beans.BeanInfo

public class ImportDeclaration
extends Statement


Fields inherited from class org.concord.util.script.Statement
empty
 
Fields inherited from class org.concord.util.script.ScriptObject
beginColumn, beginLine, debug, deleted, doConversion, endColumn, endLine, name, nil, runtimeTable, script
 
Fields inherited from interface java.beans.BeanInfo
ICON_COLOR_16x16, ICON_COLOR_32x32, ICON_MONO_16x16, ICON_MONO_32x32
 
Constructor Summary
ImportDeclaration(Script script)
           
 
Method Summary
 void delete()
           
 java.lang.String getImportClass()
           
 java.lang.String getImportName()
           
 java.lang.String getImportPackage()
           
 java.util.Stack getPath()
           
 void interpret()
          This does nothing.
 void setImportName(java.lang.String importName)
           
 void setPath(java.util.Stack thePath)
           
 
Methods inherited from class org.concord.util.script.Statement
getLocals
 
Methods inherited from class org.concord.util.script.ScriptObject
findConstructor, findMethod, getAdditionalBeanInfo, getArrayValue, getAtom, getBeanDescriptor, getCurrentFrame, getDefaultEventIndex, getDefaultPropertyIndex, getEventSetDescriptors, getField, getFieldValue, getIcon, getMethodDescriptors, getName, getPropertyDescriptors, getScript, popFrame, pushFrame, setArrayValue, setCurrentFrame, setFieldValue, setName, setScript, setSourceBounds
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ImportDeclaration

public ImportDeclaration(Script script)
Method Detail

delete

public void delete()
Overrides:
delete in class ScriptObject

setPath

public void setPath(java.util.Stack thePath)

getPath

public java.util.Stack getPath()

getImportName

public java.lang.String getImportName()

setImportName

public void setImportName(java.lang.String importName)

getImportPackage

public java.lang.String getImportPackage()

getImportClass

public java.lang.String getImportClass()

interpret

public void interpret()
Description copied from class: ScriptObject
This does nothing. Maybe should be abstract?
Overrides:
interpret in class Statement