Package javassist.compiler.ast
Class IntConst
- java.lang.Object
-
- javassist.compiler.ast.ASTree
-
- javassist.compiler.ast.IntConst
-
- All Implemented Interfaces:
Serializable
public class IntConst extends ASTree
Integer constant.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description IntConst(long v, int tokenId)
-
-
-
Method Detail
-
get
public long get()
-
set
public void set(long v)
-
getType
public int getType()
-
accept
public void accept(Visitor v) throws javassist.compiler.CompileError
Description copied from class:ASTree
Is a method for the visitor pattern. It callsatXXX()
on the given visitor, whereXXX
is the class name of the node object.
-
-