Revision 6507 trunk/libraries/libFMap/src/com/iver/cit/gvsig/fmap/drivers/gml/GMLFeaturesParser.java

View differences:

GMLFeaturesParser.java
61 61
*
62 62
* $Id$
63 63
* $Log$
64
* Revision 1.1  2006-07-19 12:29:39  jorpiell
64
* Revision 1.2  2006-07-24 07:36:40  jorpiell
65
* Se han hecho un cambio en los nombres de los metodos para clarificar
66
*
67
* Revision 1.1  2006/07/19 12:29:39  jorpiell
65 68
* A?adido el driver de GML
66 69
*
67 70
*
......
73 76
public class GMLFeaturesParser{
74 77
	private static int buffer  = 100000000;
75 78
	private static int timeout = 100000000;
79
	
76 80
	/**
77 81
	 * Return an iterrator of features
78 82
	 * @param file
......
109 113
	 * @return
110 114
	 * @throws SAXException 
111 115
	 */
112
	private static FeatureReader getFeatureReader(InputStream is,
116
	public static FeatureReader getFeatureReader(InputStream is,
113 117
	        int bufferSize, int timeout, WFSTransactionState transaction, FeatureType ft) throws SAXException{
114 118
    	return WFSFeatureReader.getFeatureReader(is, bufferSize,
115 119
    			timeout, transaction, ft);
116 120
    }
117 121

  
118 122
	
123
	
119 124
}

Also available in: Unified diff