001 package jp.osdl.jbento2.analyzer;
002
003 public class GCParserFactory {
004 public static GCParser create(String type) {
005 if (type == null) {
006 return new GCParserImpl();
007 }
008 throw new AnalyzerException(); // todo
009 }
010 }