Revision 11192 trunk/libraries/libFMap/src/com/iver/cit/gvsig/fmap/rendering/styling/PointPlacementConstraints.java

View differences:

PointPlacementConstraints.java
43 43
*
44 44
* $Id$
45 45
* $Log$
46
* Revision 1.6  2007-04-12 14:28:43  jaume
46
* Revision 1.7  2007-04-13 11:59:30  jaume
47
* *** empty log message ***
48
*
49
* Revision 1.6  2007/04/12 14:28:43  jaume
47 50
* basic labeling support for lines
48 51
*
49 52
* Revision 1.5  2007/04/11 16:01:08  jaume
......
73 76
import com.iver.cit.gvsig.fmap.core.FPoint2D;
74 77
import com.iver.cit.gvsig.fmap.core.FShape;
75 78
import com.iver.cit.gvsig.fmap.core.IGeometry;
79
import com.iver.utiles.XMLEntity;
76 80
/**
77 81
 *
78 82
 * @author jaume dominguez faus - jaume.dominguez@iver.es
......
96 100
		}
97 101
	}
98 102

  
99
	public void placeLabel(Graphics2D g, IGeometry geom, LabelClass lc, MultiPolygon exclusionZone, AffineTransform transform, String[] labelTexts) {
103
	public void placeLabel(Graphics2D g, IGeometry geom, LabelClass lc, MultiPolygon exclusionZone, AffineTransform transform) {
100 104
		// TODO Implement it
101 105
		throw new Error("Not yet implemented!");
102 106

  
103 107
	}
108

  
109
	public String getClassName() {
110
		return getClass().getName();
111
	}
112

  
113
	public XMLEntity getXMLEntity() {
114
		XMLEntity xml = super.getXMLEntity();
115
		xml.putProperty("className", getClassName());
116
		return xml;
117
	}
118

  
104 119
}

Also available in: Unified diff