Revision 47646 trunk/org.gvsig.desktop/org.gvsig.desktop.compat.cdc/org.gvsig.fmap.geometry/org.gvsig.fmap.geometry.jts/src/main/java/org/gvsig/fmap/geom/jts/gml/GMLHandler.java

View differences:

GMLHandler.java
116 116
		 * @throws SAXException 
117 117
		 */
118 118
		public Object create(GeometryFactory gf) throws SAXException {
119
                    System.out.println("create "+this.strategy.getClass().getSimpleName());
119
//                    System.out.println("create "+this.strategy.getClass().getSimpleName());
120 120
                    return strategy.parse(this, gf);
121 121
		}
122 122
	}
......
212 212
	 */
213 213
	public void endElement(String uri, String localName, String qName)
214 214
			throws SAXException {
215
            System.out.println("endElement: "+localName +" , "+qName);
215
//            System.out.println("endElement: "+localName +" , "+qName);
216 216
		Handler thisAction = (Handler) stack.pop();
217 217
		((Handler) stack.peek()).keep(thisAction.create(gf));
218 218
	}
......
222 222
	 */
223 223
	public void startElement(String uri, String localName, String qName,
224 224
			Attributes attributes) throws SAXException {
225
            System.out.println("startElement: "+localName +" , "+qName);
225
//            System.out.println("startElement: "+localName +" , "+qName);
226 226
		// create a handler
227 227
		ParseStrategy ps = GeometryStrategies.findStrategy(uri, localName);
228 228
		if (ps == null) {

Also available in: Unified diff