Top Description Constructors Methods
com.sun.org.apache.bcel.internal.generic

public Class DSTORE

extends StoreInstruction
Class Inheritance

DSTORE - Store double into local variable
Stack: ..., value.word1, value.word2 -> ...

Constructor Summary

AccessConstructor and Description
pack-priv
DSTORE()

Empty constructor needed for Instruction.readInstruction.

public
DSTORE(final int
index of local variable
n
)

Store double into local variable

Method Summary

Modifier and TypeMethod and Description
public void
accept(final Visitor
Visitor object
v
)

Overrides com.sun.org.apache.bcel.internal.generic.StoreInstruction.accept.

Call corresponding visitor method(s).

Constructor Detail

DSTOREback to summary
pack-priv DSTORE()

Empty constructor needed for Instruction.readInstruction. Not to be used otherwise.

DSTOREback to summary
public DSTORE(final int n)

Store double into local variable

Parameters
n:int

index of local variable

Method Detail

acceptback to summary
public void accept(final Visitor v)

Overrides com.sun.org.apache.bcel.internal.generic.StoreInstruction.accept.

Call corresponding visitor method(s). The order is: Call visitor methods of implemented interfaces first, then call methods according to the class hierarchy in descending order, i.e., the most specific visitXXX() call comes last.

Parameters
v:Visitor

Visitor object

Annotations
@Override