Revision 11203 trunk/libraries/libGPE/src/org/gvsig/gpe/IGPEContentHandler.java

View differences:

IGPEContentHandler.java
45 45
 *
46 46
 * $Id$
47 47
 * $Log$
48
 * Revision 1.5  2007-04-12 17:06:42  jorpiell
48
 * Revision 1.6  2007-04-13 13:14:55  jorpiell
49
 * Created the base tests and add some methods to the content handler
50
 *
51
 * Revision 1.5  2007/04/12 17:06:42  jorpiell
49 52
 * First GML writing tests
50 53
 *
51 54
 * Revision 1.4  2007/04/11 13:04:51  jorpiell
......
71 74

  
72 75
	public void endLayer(Object layer);
73 76
	
77
	public void addNameToLayer(Object layer,String name);
78
	
79
	public void addDescriptionToLayer(Object layer,String description);
80
	
74 81
	public Object startFeature(String name, String id);
75 82
	
76 83
	public void endFeature(Object feature);
77 84
	
85
	public void addNameToFeature(Object feature, String name);
86
	
78 87
	public Object startElement(Object parent, String name, Object value, Object type);
79 88
		
80 89
	public void endElement(Object element);
......
87 96
	
88 97
	public void endPoint(Object point);
89 98
	
90
	public Object startLineString(double x, double y, double z, String id, String srs);
99
	public Object startLineString(double[] x, double[] y, double[] z, String id, String srs);
91 100
	
92 101
	public void endLineString(Object line);
93 102
	
94
	public Object startLinearRing(double x, double y, double z, String id, String srs);
103
	public Object startLinearRing(double[] x, double[] y, double[] z, String id, String srs);
95 104
	
96 105
	public void endLinearRing(Object linearRing);
97 106
	
98
	public Object startPolygon(double x, double y, double z, String id, String srs);
107
	public Object startPolygon(double[] x, double[] y, double[] z, String id, String srs);
99 108
	
100 109
	public void endPolygon(Object polygon);
101 110
	
......
103 112
	
104 113
	public void addOuterBoundary(Object polygon,Object linearRing);
105 114
	
106
	public boolean isViewInBox(Object bbox, Object view);
107
	
108
	public boolean isGeometryInBox(Object bbox, Object geometry);
109
	
110 115
	public void addFeature(Object layer,Object feature);
111 116
	
112 117
	public void addBbox(Object item,Object bbox);
......
114 119
	public void addElement(Object feature,Object element);
115 120
	
116 121
	public void addGeometry(Object feature, Object geometry);
122
	
123
	public boolean isViewInBox(Object bbox, Object view);
124
	
125
	public boolean isGeometryInBox(Object bbox, Object geometry);
117 126

  
118

  
119 127
}

Also available in: Unified diff