Browse Source

formatted

tags/PRE_PUSHIN
aclement 14 years ago
parent
commit
4f36eb7b1e
1 changed files with 14 additions and 8 deletions
  1. 14
    8
      util/src/org/aspectj/util/TypeSafeEnum.java

+ 14
- 8
util/src/org/aspectj/util/TypeSafeEnum.java View File

@@ -10,7 +10,6 @@
* Xerox/PARC initial implementation
* ******************************************************************/


package org.aspectj.util;

import java.io.*;
@@ -24,14 +23,21 @@ public class TypeSafeEnum {
if (key > Byte.MAX_VALUE || key < Byte.MIN_VALUE) {
throw new IllegalArgumentException("key doesn't fit into a byte: " + key);
}
this.key = (byte)key;
this.key = (byte) key;
}

public String toString() {
return name;
}

public String getName() {
return name;
}

public byte getKey() {
return key;
}
public String toString() { return name; }
public String getName() { return name; }
public byte getKey() { return key; }

public void write(DataOutputStream s) throws IOException {
s.writeByte(key);
}

Loading…
Cancel
Save