home *** CD-ROM | disk | FTP | other *** search
- package java.awt;
-
- import sun.awt.DebugHelper;
-
- abstract class AttributeValue {
- private final int value;
- private final String[] names;
- private static final DebugHelper dbg;
- // $FF: synthetic field
- static Class class$java$awt$AttributeValue;
-
- protected AttributeValue(int var1, String[] var2) {
- this.value = var1;
- this.names = var2;
- }
-
- public int hashCode() {
- return this.value;
- }
-
- public String toString() {
- return this.names[this.value];
- }
-
- // $FF: synthetic method
- static Class class$(String var0) {
- try {
- return Class.forName(var0);
- } catch (ClassNotFoundException var2) {
- throw new NoClassDefFoundError(((Throwable)var2).getMessage());
- }
- }
-
- static {
- dbg = DebugHelper.create(class$java$awt$AttributeValue == null ? (class$java$awt$AttributeValue = class$("java.awt.AttributeValue")) : class$java$awt$AttributeValue);
- }
- }
-