jef.dna.constantInfo
Interface ConstDouble

All Superinterfaces:
java.lang.Cloneable, ConstantInfo
All Known Implementing Classes:
ConstantDouble

@ClosingCpInfo
public interface ConstDouble
extends ConstantInfo

This interface has to be implemented by those classes representing a CONSTANT_Double_info structure. The CONSTANT_Double_info structure is used to represent 8-byte numeric constants.

Author:
Francesco Russo frusso@dev.java.net

Method Summary
 int getHighBytes()
          The high_bytes and low_bytes items of the CONSTANT_Double_info structure together represent the double value in IEEE 754 floating-point double format.
 int getLowBytes()
          The high_bytes and low_bytes items of the CONSTANT_Double_info structure together represent the double value in IEEE 754 floating-point double format.
 void setHighBytes(int highB)
          The high_bytes and low_bytes items of the CONSTANT_Double_info structure together represent the double value in IEEE 754 floating-point double format.
 void setLowBytes(int lowB)
          The high_bytes and low_bytes items of the CONSTANT_Double_info structure together represent the double value in IEEE 754 floating-point double format.
 
Methods inherited from interface jef.dna.constantInfo.ConstantInfo
clone, fromStream, getCpt, getTag, getType, setCpt, setTag, toStream, updateRefs, validate
 

Method Detail

getHighBytes

int getHighBytes()
The high_bytes and low_bytes items of the CONSTANT_Double_info structure together represent the double value in IEEE 754 floating-point double format.

Returns:
int The high part of the double constant

setHighBytes

void setHighBytes(int highB)
The high_bytes and low_bytes items of the CONSTANT_Double_info structure together represent the double value in IEEE 754 floating-point double format.

Parameters:
highB - The high part of the double constant

getLowBytes

int getLowBytes()
The high_bytes and low_bytes items of the CONSTANT_Double_info structure together represent the double value in IEEE 754 floating-point double format.

Returns:
int The low part of the double constant

setLowBytes

void setLowBytes(int lowB)
The high_bytes and low_bytes items of the CONSTANT_Double_info structure together represent the double value in IEEE 754 floating-point double format.

Parameters:
lowB - The low part of the double constant