org.retro.scheme
Interface SchemeSymbol

All Superinterfaces:
java.io.Serializable
All Known Implementing Classes:
Symbol

public interface SchemeSymbol
extends java.io.Serializable


Method Summary
 java.lang.Object getGlobalValue()
          Getting the value of an undefined SchemeSymbol throws a SchemeException
 boolean isDefined()
           
 java.lang.Object setGlobalValue(java.lang.Object newval)
          The value can be set to anything
 

Method Detail

isDefined

public boolean isDefined()

getGlobalValue

public java.lang.Object getGlobalValue()
Getting the value of an undefined SchemeSymbol throws a SchemeException


setGlobalValue

public java.lang.Object setGlobalValue(java.lang.Object newval)
The value can be set to anything