コード例 #1
0
 public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException {
   identifier = in.readUTF();
   objectType = (ObjectType) in.readObject();
   setIndex(-1);
   setFieldType(((ClassObjectType) objectType).getClassType());
   setValueType(objectType.getValueType());
 }
コード例 #2
0
 public GlobalExtractor(final String identifier, final ObjectType objectType) {
   super(-1, ((ClassObjectType) objectType).getClassType(), objectType.getValueType());
   this.identifier = identifier;
   this.objectType = objectType;
 }