Update of /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/view
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10003
Modified Files:
View.java
Log Message:
added methods for selecting front or back space-label of a surface
Index: View.java
===================================================================
RCS file: /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/view/View.java,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -d -r1.17 -r1.18
*** View.java 1 Nov 2005 07:36:09 -0000 1.17
--- View.java 3 Nov 2005 11:08:08 -0000 1.18
***************
*** 222,224 ****
--- 222,239 ----
*/
public boolean facingFront(Surface surface);
+
+ /**
+ * Called when a space-label corresponding to the front of a Surface is selected.
+ */
+ public void selectFrontLabel();
+
+ /**
+ * Called when a space-label corresponding to the back of a Surface is selected.
+ */
+ public void selectBackLabel();
+
+ /**
+ * De selects the currently selected label.
+ */
+ public void deSelectLabel();
}
|