Package com.google.javascript.rhino
Interface StaticSlot
-
- All Superinterfaces:
java.io.Serializable
- All Known Subinterfaces:
StaticTypedSlot
- All Known Implementing Classes:
AbstractVar,Property,SimpleSlot,SymbolTable.Symbol,TypedVar,Var
public interface StaticSlot extends java.io.SerializableTheStaticSlotinterface must be implemented by variables that can appear as members of aStaticScope.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StaticRefgetDeclaration()Gets the declaration of this symbol.JSDocInfogetJSDocInfo()Gets the JSDoc for this slot.java.lang.StringgetName()Gets the name of the slot.StaticScopegetScope()
-
-
-
Method Detail
-
getName
java.lang.String getName()
Gets the name of the slot.
-
getDeclaration
StaticRef getDeclaration()
Gets the declaration of this symbol. May not exist.
-
getJSDocInfo
JSDocInfo getJSDocInfo()
Gets the JSDoc for this slot.
-
getScope
StaticScope getScope()
-
-