1 7 8 package com.sun.corba.se.impl.orb ; 9 10 import com.sun.corba.se.spi.orb.Operation ; 11 12 public class ParserActionFactory{ 13 private ParserActionFactory() {} 14 15 public static ParserAction makeNormalAction( String propertyName, 16 Operation operation, String fieldName ) 17 { 18 return new NormalParserAction( propertyName, operation, fieldName ) ; 19 } 20 21 public static ParserAction makePrefixAction( String propertyName, 22 Operation operation, String fieldName, Class componentType ) 23 { 24 return new PrefixParserAction( propertyName, operation, fieldName, componentType ) ; 25 } 26 } 27 | Popular Tags |