1 19 20 package org.netbeans.lib.ddl.impl; 21 22 import java.io.*; 23 import java.util.*; 24 import java.text.ParseException ; 25 import org.netbeans.lib.ddl.*; 26 import org.netbeans.lib.ddl.util.PListReader; 27 28 35 public class SpecificationParser extends PListReader { 36 37 38 public SpecificationParser(String file) 39 throws FileNotFoundException, ParseException , IOException 40 { 41 super(file); 42 } 43 44 45 public SpecificationParser(InputStream stream) 46 throws FileNotFoundException, ParseException , IOException 47 { 48 super(stream); 49 } 50 } 51 52 55 | Popular Tags |