Revision 787 trunk/libraries/libFMap/src/com/iver/cit/gvsig/fmap/core/v02/FSymbol.java

View differences:

FSymbol.java
206 206
			if (getColor()!=null){
207 207
			xml.putProperty("m_Color",StringUtilities.color2String(getColor()));
208 208
			}
209
			if (geOutlineColor()!=null){
210
			xml.putProperty("m_outlineColor",StringUtilities.color2String(geOutlineColor()));
209
			if (getOutlineColor()!=null){
210
			xml.putProperty("m_outlineColor",StringUtilities.color2String(getOutlineColor()));
211 211
			}
212 212
			if (getFont()!=null){
213 213
			xml.putProperty("fontname",getFont().getName());
214 214
			xml.putProperty("fontstyle",getFont().getStyle());
215
			xml.putProperty("m_FontSize",geFontSize());
215
			xml.putProperty("m_FontSize",getFontSize());
216 216
			xml.putProperty("m_FontColor",StringUtilities.color2String(getFontColor()));
217 217
			}
218 218
			
......
220 220
			xml.putProperty("m_bDrawShape",isShapeVisible());
221 221
			xml.putProperty("m_Size",getSize());
222 222
			//xml.putProperty("m_Icon",m_Icon.);
223
			xml.putProperty("m_Rotation",geRotation());
223
			xml.putProperty("m_Rotation",getRotation());
224 224
			if (getFill() instanceof Color){
225 225
				xml.putProperty("m_Fill",StringUtilities.color2String((Color)getFill()));	
226 226
			}
......
357 357
	/**
358 358
	 * @return Returns the m_outlineColor.
359 359
	 */
360
	public Color geOutlineColor() {
360
	public Color getOutlineColor() {
361 361
		return m_outlineColor;
362 362
	}
363 363

  
......
447 447
	/**
448 448
	 * @return Returns the m_Icon.
449 449
	 */
450
	public Image geIcon() {
450
	public Image getIcon() {
451 451
		return m_Icon;
452 452
	}
453 453

  
......
462 462
	/**
463 463
	 * @return Returns the m_Rotation.
464 464
	 */
465
	public int geRotation() {
465
	public int getRotation() {
466 466
		return m_Rotation;
467 467
	}
468 468

  
......
573 573
	/**
574 574
	 * @return Returns the m_FontSize.
575 575
	 */
576
	public float geFontSize() {
576
	public float getFontSize() {
577 577
		return m_FontSize;
578 578
	}
579 579
}

Also available in: Unified diff