blob: e558aa71418adbc7ddccced02ad8018739772b31 [file] [log] [blame]
/*
* CPLongInfo.java
*
* Sun Public License Notice
*
* The contents of this file are subject to the Sun Public License
* Version 1.0 (the "License"). You may not use this file except in
* compliance with the License. A copy of the License is available at
* http://www.sun.com/
*
* The Original Code is NetBeans. The Initial Developer of the Original
* Code is Sun Microsystems, Inc. Portions Copyright 1997-2000 Sun
* Microsystems, Inc. All Rights Reserved.
*
* Contributor(s): Thomas Ball
*
* Version: $Revision$
*/
package org.netbeans.modules.classfile;
/**
* A class representing the CONSTANT_Long constant pool type.
*
* @author Thomas Ball
*/
public final class CPLongInfo extends CPEntry {
CPLongInfo(ConstantPool pool, long v) {
super(pool);
value = new Long(v);
}
/* The VM doesn't allow the next constant pool slot to be used
* for longs and doubles.
*/
boolean usesTwoSlots() {
return true;
}
public final int getTag() {
return ConstantPool.CONSTANT_Long;
}
public String toString() {
return getClass().getName() + ": value=" + value; //NOI18N
}
}