Update of /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv18370/src/net/sourceforge/bprocessor/gl
Modified Files:
GLView.java
Log Message:
minor changes to tools
Index: GLView.java
===================================================================
RCS file: /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/GLView.java,v
retrieving revision 1.38
retrieving revision 1.39
diff -C2 -d -r1.38 -r1.39
*** GLView.java 13 Jun 2006 09:42:40 -0000 1.38
--- GLView.java 8 Sep 2006 13:08:20 -0000 1.39
***************
*** 194,197 ****
--- 194,205 ----
/**
+ * Set the value of the length-field
+ * @param value String
+ */
+ public void setLengthValue(String value) {
+ lengthField.setText(value);
+ }
+
+ /**
* Set the lengthField display to two parameters
* @param x The first parameter
***************
*** 209,212 ****
--- 217,228 ----
return lengthField.getDouble();
}
+
+ /**
+ *
+ * @return String
+ */
+ public String getLengthValue() {
+ return lengthField.getText();
+ }
/**
|