Package net.jangaroo.jooc.model
Interface NamespacedModel
-
- All Superinterfaces:
ActionScriptModel
- All Known Implementing Classes:
ClassModel,FieldModel,MemberModel,MethodModel,NamespaceModel,PropertyModel
public interface NamespacedModel extends ActionScriptModel
A model with a namespace. In ActionScript, there are some predefined namespaces (see enum constants) and custom namespaces, which can be any identifier that has been declared as a namespace.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetNamespace()voidsetNamespace(String namespace)-
Methods inherited from interface net.jangaroo.jooc.model.ActionScriptModel
visit
-
-
-
-
Field Detail
-
PUBLIC
static final String PUBLIC
- See Also:
- Constant Field Values
-
INTERNAL
static final String INTERNAL
- See Also:
- Constant Field Values
-
PROTECTED
static final String PROTECTED
- See Also:
- Constant Field Values
-
PRIVATE
static final String PRIVATE
- See Also:
- Constant Field Values
-
-