KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > enhydra > convert > ConfigFile


1 /*
2  * Created on Dec 28, 2004
3  *
4  * TODO To change the template for this generated file go to
5  * Window - Preferences - Java - Code Style - Code Templates
6  */

7 package org.enhydra.convert;
8
9 import java.io.InputStream JavaDoc;
10 import java.util.Vector JavaDoc;
11 import com.lutris.util.ConfigException;
12 /**
13  * @author Administrator
14  *
15  * TODO To change the template for this generated type comment go to
16  * Window - Preferences - Java - Code Style - Code Templates
17  */

18 public class ConfigFile extends com.lutris.util.ConfigFile {
19     
20     public ConfigFile(InputStream JavaDoc inputStream) throws ConfigException {
21         super(inputStream);
22       }
23     
24     public Vector JavaDoc getOrder() {
25         return order;
26       }
27 }
28
Popular Tags