| xtc.typical.ScopeKind
ScopeKind | abstract public class ScopeKind extends Variant (Code) | | The base class of all scope kinds.
author: Anh Le version: $Revision: 1.5 $ |
Inner Class :public static enum Tag | |
Inner Class :public static class Named extends ScopeKind>> | |
Inner Class :public static class Anonymous extends ScopeKind> | |
Inner Class :public static class Temporary extends ScopeKind> | |
Constructor Summary | |
protected | ScopeKind() Create a new scope_kind. |
Method Summary | |
public boolean | isAnonymous() Test if this scope is anonymous. | public boolean | isNamed() Test if this scope is named. | public boolean | isTemporary() Test if this scope is temporary. | abstract public Tag | tag() |
ScopeKind | protected ScopeKind()(Code) | | Create a new scope_kind.
|
isAnonymous | public boolean isAnonymous()(Code) | | Test if this scope is anonymous.
true if anonymous, false otherwise. |
isNamed | public boolean isNamed()(Code) | | Test if this scope is named.
true if named, false otherwise. |
isTemporary | public boolean isTemporary()(Code) | | Test if this scope is temporary.
true if temporary, false otherwise. |
tag | abstract public Tag tag()(Code) | | Get the tag of this class
The tag |
|
|