src/share/classes/com/sun/tools/javac/jvm/ClassFile.java

changeset 826
5cf6c432ef2f
parent 581
f2fdd52e4e87
child 1326
30c36e23f154
equal deleted inserted replaced
825:19f9b6548c70 826:5cf6c432ef2f
1 /* 1 /*
2 * Copyright (c) 1999, 2008, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 1999, 2011, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 * 4 *
5 * This code is free software; you can redistribute it and/or modify it 5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as 6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. Oracle designates this 7 * published by the Free Software Foundation. Oracle designates this
78 public final static int CONSTANT_String = 8; 78 public final static int CONSTANT_String = 8;
79 public final static int CONSTANT_Fieldref = 9; 79 public final static int CONSTANT_Fieldref = 9;
80 public final static int CONSTANT_Methodref = 10; 80 public final static int CONSTANT_Methodref = 10;
81 public final static int CONSTANT_InterfaceMethodref = 11; 81 public final static int CONSTANT_InterfaceMethodref = 11;
82 public final static int CONSTANT_NameandType = 12; 82 public final static int CONSTANT_NameandType = 12;
83 public final static int CONSTANT_MethodHandle = 15;
84 public final static int CONSTANT_MethodType = 16;
85 public final static int CONSTANT_InvokeDynamic = 18;
83 86
84 public final static int MAX_PARAMETERS = 0xff; 87 public final static int MAX_PARAMETERS = 0xff;
85 public final static int MAX_DIMENSIONS = 0xff; 88 public final static int MAX_DIMENSIONS = 0xff;
86 public final static int MAX_CODE = 0xffff; 89 public final static int MAX_CODE = 0xffff;
87 public final static int MAX_LOCALS = 0xffff; 90 public final static int MAX_LOCALS = 0xffff;

mercurial