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

View differences:

PolygonPlacementConstraints.java
43 43
*
44 44
* $Id$
45 45
* $Log$
46
* Revision 1.5  2007-04-12 14:28:43  jaume
46
* Revision 1.6  2007-04-13 11:59:30  jaume
47
* *** empty log message ***
48
*
49
* Revision 1.5  2007/04/12 14:28:43  jaume
47 50
* basic labeling support for lines
48 51
*
49 52
* Revision 1.4  2007/04/11 16:01:08  jaume
......
70 73
import com.iver.cit.gvsig.fmap.core.FShape;
71 74
import com.iver.cit.gvsig.fmap.core.IGeometry;
72 75
import com.iver.cit.gvsig.fmap.core.symbols.ITextSymbol;
76
import com.iver.utiles.XMLEntity;
73 77
/**
74 78
 *
75 79
 * @author jaume dominguez faus - jaume.dominguez@iver.es
......
83 87

  
84 88
	}
85 89

  
86
	public void placeLabel(Graphics2D g, IGeometry geom, LabelClass lc, MultiPolygon exclusionZone, AffineTransform transform, String[] labelTexts) {
90
	public void placeLabel(Graphics2D g, IGeometry geom, LabelClass lc, MultiPolygon exclusionZone, AffineTransform transform) {
87 91
		// TODO Implement it
88 92
		throw new Error("Not yet implemented!");
89 93

  
90 94
	}
95

  
96

  
97
	public String getClassName() {
98
		return getClass().getName();
99
	}
100

  
101
	public XMLEntity getXMLEntity() {
102
		XMLEntity xml = super.getXMLEntity();
103
		xml.putProperty("className", getClassName());
104
		return xml;
105
	}
106

  
91 107
}

Also available in: Unified diff