Package javassist.compiler.ast
Class DoubleConst
- java.lang.Object
-
- javassist.compiler.ast.ASTree
-
- javassist.compiler.ast.DoubleConst
-
- All Implemented Interfaces:
Serializable
public class DoubleConst extends ASTree
Double constant.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DoubleConst(double v, int tokenId)
-
-
-
Method Detail
-
get
public double get()
-
set
public void set(double 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.
-
-