1 19 package org.netbeans.lib.jmi.xmi; 20 21 import org.netbeans.api.xmi.XMIInputConfig; 22 import org.netbeans.api.xmi.sax.*; 23 24 public class ConsumerFactory extends XMIConsumerFactory { 25 26 27 public XMIConsumer createXMIConsumer() { 28 return new Consumer (); 29 } 30 31 public XMIConsumer createXMIConsumer(XMIInputConfig configuration) { 32 return new Consumer (configuration); 33 } 34 } 35 | Popular Tags |