1 7 8 package com.sun.corba.se.impl.orb ; 9 10 import com.sun.corba.se.spi.orb.ParserData ; 11 import com.sun.corba.se.spi.orb.Operation ; 12 13 public abstract class ParserDataBase implements ParserData { 14 private String propertyName ; 15 private Operation operation ; 16 private String fieldName ; 17 private Object defaultValue ; 18 private Object testValue ; 19 20 protected ParserDataBase( String propertyName, 21 Operation operation, String fieldName, Object defaultValue, 22 Object testValue ) 23 { 24 this.propertyName = propertyName ; 25 this.operation = operation ; 26 this.fieldName = fieldName ; 27 this.defaultValue = defaultValue ; 28 this.testValue = testValue ; 29 } 30 31 public String getPropertyName() { return propertyName ; } 32 public Operation getOperation() { return operation ; } 33 public String getFieldName() { return fieldName ; } 34 public Object getDefaultValue() { return defaultValue ; } 35 public Object getTestValue() { return testValue ; } 36 } 37 | Popular Tags |