01: /*
02: * LongPrimitve.java Copyright (c) 2006,07 Swaroop Belur
03: *
04: * This program is free software; you can redistribute it and/or
05: * modify it under the terms of the GNU General Public License
06: * as published by the Free Software Foundation; either version 2
07: * of the License, or (at your option) any later version.
08:
09: * This program is distributed in the hope that it will be useful,
10: * but WITHOUT ANY WARRANTY; without even the implied warranty of
11: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12: * GNU General Public License for more details.
13:
14: * You should have received a copy of the GNU General Public License
15: * along with this program; if not, write to the Free Software
16: * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17: *
18: */
19:
20: package net.sf.jdec.constantpool;
21:
22: public class LongPrimitive {
23:
24: private int tag;
25: private int cppos;
26: private long value;
27:
28: public long getValue() {
29: return value;
30: }
31:
32: public void setValue(long value) {
33: this .value = value;
34: }
35:
36: public int getCppos() {
37: return cppos;
38: }
39:
40: public void setCppos(int cppos) {
41: this .cppos = cppos;
42: }
43:
44: public int getTag() {
45: return tag;
46: }
47:
48: public void setTag(int tag) {
49: this.tag = tag;
50: }
51:
52: }
|