Searched refs:targetTypeValue (Results 1 - 1 of 1) sorted by relevance

/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DTargetType.java168 private final int targetTypeValue; field in class:TargetType
171 TargetType(int targetTypeValue, TargetAttribute... attributes) { argument
172 if (targetTypeValue < Byte.MIN_VALUE
173 || targetTypeValue > Byte.MAX_VALUE)
174 throw new AssertionError("attribute type value needs to be a byte: " + targetTypeValue);
175 this.targetTypeValue = (byte)targetTypeValue;
196 return fromTargetTypeValue(targetTypeValue() + 1);
232 public int targetTypeValue() { method in class:TargetType
233 return this.targetTypeValue;
[all...]

Completed in 22 milliseconds