Revision 9669 trunk/libraries/libFMap/src/com/iver/cit/gvsig/fmap/core/symbols/AbstractFillSymbol.java

View differences:

AbstractFillSymbol.java
43 43
*
44 44
* $Id$
45 45
* $Log$
46
* Revision 1.1  2007-01-10 16:31:36  jaume
46
* Revision 1.2  2007-01-11 12:17:34  jaume
47 47
* *** empty log message ***
48 48
*
49
* Revision 1.1  2007/01/10 16:31:36  jaume
50
* *** empty log message ***
51
*
49 52
* Revision 1.6  2006/12/04 17:13:39  fjp
50 53
* *** empty log message ***
51 54
*
......
93 96
	public int getOnePointRgb() {
94 97
		return outline.getRGB();
95 98
	}
99

  
100
	/**
101
	 * Sets the color that will be used to draw the filling pattern of this symbol.
102
	 *
103
	 * @param Color
104
	 */
105
	public void setFillColor(Color color) {
106
		this.color = color;
107
	}
108

  
109
	/**
110
	 * Sets the color of the outline.
111
	 * @deprectated will be substituted by setOutline(AbstractLineSymbol);
112
	 * @param color
113
	 */
114
	public void setOutlineColor(Color color) {
115
		// TODO setOutline(AbstractLineSymbol);
116
		outline = color;
117
	}
96 118
}

Also available in: Unified diff