Revision 11073 trunk/libraries/libFMap/src/com/iver/cit/gvsig/fmap/core/styles/ILabelStyle.java

View differences:

ILabelStyle.java
43 43
*
44 44
* $Id$
45 45
* $Log$
46
* Revision 1.6  2007-04-04 15:42:03  jaume
46
* Revision 1.7  2007-04-05 16:07:14  jaume
47
* Styled labeling stuff
48
*
49
* Revision 1.6  2007/04/04 15:42:03  jaume
47 50
* *** empty log message ***
48 51
*
49 52
* Revision 1.5  2007/04/04 15:41:05  jaume
......
68 71
*/
69 72
package com.iver.cit.gvsig.fmap.core.styles;
70 73

  
71
import java.awt.Dimension;
72 74
import java.awt.Rectangle;
73 75
import java.awt.geom.Point2D;
76
import java.awt.geom.Rectangle2D;
74 77

  
75 78
/**
76 79
 * Defines the style that a Label symbol can contain which typically define
......
104 107
	 * placed.
105 108
	 * @return
106 109
	 */
107
	public Rectangle[] getTextBounds();
110
	public Rectangle2D[] getTextBounds();
108 111

  
109 112
	/**
110 113
	 * The complete bounds of this ILabelStyle
......
127 130
	 */
128 131
	public void setMarkerPoint(Point2D p) throws IllegalArgumentException;
129 132

  
133
	public void setTextFieldArea(int index, Rectangle2D rect);
134

  
135
	public void addTextFieldArea(Rectangle2D rect);
136

  
137
	public void deleteTextFieldArea(int index);
138

  
130 139
}

Also available in: Unified diff