comparison agent/src/share/classes/sun/jvm/hotspot/runtime/ClassConstants.java @ 1385:bc32f286fae0

6945219: minor SA fixes Reviewed-by: twisti
author never
date Tue, 20 Apr 2010 13:26:33 -0700
parents bd02caa94611
children c18cbe5936b8
comparison
equal deleted inserted replaced
1384:c544d979f886 1385:bc32f286fae0
1 /* 1 /*
2 * Copyright 2002-2009 Sun Microsystems, Inc. All Rights Reserved. 2 * Copyright 2002-2010 Sun Microsystems, Inc. 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. 7 * published by the Free Software Foundation.
55 // Temporary tag until actual use 55 // Temporary tag until actual use
56 public static final int JVM_CONSTANT_UnresolvedString = 102; 56 public static final int JVM_CONSTANT_UnresolvedString = 102;
57 57
58 // Temporary tag while constructing constant pool 58 // Temporary tag while constructing constant pool
59 public static final int JVM_CONSTANT_StringIndex = 103; 59 public static final int JVM_CONSTANT_StringIndex = 103;
60
61 // Temporary tag while constructing constant pool
62 public static final int JVM_CONSTANT_UnresolvedClassInError = 104;
60 63
61 // 1.5 major/minor version numbers from JVM spec. 3rd edition 64 // 1.5 major/minor version numbers from JVM spec. 3rd edition
62 public static final short MAJOR_VERSION = 49; 65 public static final short MAJOR_VERSION = 49;
63 public static final short MINOR_VERSION = 0; 66 public static final short MINOR_VERSION = 0;
64 67