Revision 20099 tags/v1_1_2_Build_1044/prototypes/VectorialAvanzado/extensions/extGraph/src/com/iver/cit/gvsig/graph/core/GvFlag.java

View differences:

GvFlag.java
42 42

  
43 43
import java.awt.geom.Point2D;
44 44

  
45
import com.iver.andami.PluginServices;
46

  
47 45
public class GvFlag {
48 46
	/*
49 47
	 * Indexes of flag features' fields.
......
78 76

  
79 77
	public GvFlag(double x, double y) {
80 78
		this.originalPoint = new Point2D.Double(x, y);
81
		this.description = PluginServices.getText(this, "new_flag")+flagNumber++;
79
//		this.description = PluginServices.getText(this, "new_flag")+flagNumber++;
80
		this.description = "flag"+flagNumber++;
82 81
	}
83 82

  
84 83
	public GvFlag(double x, double y, double cost) {
85 84
		this.originalPoint = new Point2D.Double(x, y);
86
		this.description = PluginServices.getText(this, "new_flag")+flagNumber++;
85
//		this.description = PluginServices.getText(this, "new_flag")+flagNumber++;
86
		this.description = "flag"+flagNumber++;
87 87
		this.cost = cost;
88 88
	}
89 89

  

Also available in: Unified diff