Update of /cvsroot/bprocessor/model/src/net/sourceforge/bprocessor/model
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17058
Modified Files:
Vertex.java
Log Message:
Set methods should be public
Index: Vertex.java
===================================================================
RCS file: /cvsroot/bprocessor/model/src/net/sourceforge/bprocessor/model/Vertex.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** Vertex.java 11 Jul 2005 09:31:24 -0000 1.1
--- Vertex.java 18 Jul 2005 09:21:16 -0000 1.2
***************
*** 108,112 ****
* @param x The x coordinate
*/
! private void setX(double x) {
this.x = x;
}
--- 108,112 ----
* @param x The x coordinate
*/
! public void setX(double x) {
this.x = x;
}
***************
*** 124,128 ****
* @param y The y coordinate
*/
! private void setY(double y) {
this.y = y;
}
--- 124,128 ----
* @param y The y coordinate
*/
! public void setY(double y) {
this.y = y;
}
***************
*** 140,144 ****
* @param z The z coordinate
*/
! private void setZ(double z) {
this.z = z;
}
--- 140,144 ----
* @param z The z coordinate
*/
! public void setZ(double z) {
this.z = z;
}
***************
*** 156,160 ****
* @param w The w coordinate
*/
! private void setW(double w) {
this.w = w;
}
--- 156,160 ----
* @param w The w coordinate
*/
! public void setW(double w) {
this.w = w;
}
|