1. /*
  2. * @(#)ParserData.java 1.5 03/12/19
  3. *
  4. * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
  5. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  6. */
  7. package com.sun.corba.se.spi.orb ;
  8. import java.util.Properties ;
  9. public interface ParserData {
  10. public String getPropertyName() ;
  11. public Operation getOperation() ;
  12. public String getFieldName() ;
  13. public Object getDefaultValue() ;
  14. public Object getTestValue() ;
  15. public void addToParser( PropertyParser parser ) ;
  16. public void addToProperties( Properties props ) ;
  17. }