Update of /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/view
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv25379/src/net/sourceforge/bprocessor/gl/view
Modified Files:
ViewToolbarFactory.java
Log Message:
corrected style errors
Index: ViewToolbarFactory.java
===================================================================
RCS file: /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/view/ViewToolbarFactory.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** ViewToolbarFactory.java 28 Jun 2007 00:04:59 -0000 1.1
--- ViewToolbarFactory.java 28 Jun 2007 00:13:31 -0000 1.2
***************
*** 1,2 ****
--- 1,8 ----
+ //---------------------------------------------------------------------------------
+ // $Id$
+ //
+ // Copyright (c) 2005 The BProcessor Team (http://bprocessor.sourceforge.net)
+ // Released under the Lesser GNU Public License v2.1
+ //---------------------------------------------------------------------------------
package net.sourceforge.bprocessor.gl.view;
***************
*** 16,23 ****
--- 22,36 ----
import net.sourceforge.bprocessor.gui.Toolbar;
+ /**
+ * This class generates buttons relating to the view and puts them in the toolbar.
+ */
public class ViewToolbarFactory {
/** The logger */
private static Logger log = Logger.getLogger(ViewToolbarFactory.class);
+ /**
+ * Registers the buttons in the toolbar
+ * @param glv the GLView object the buttons should have effect on
+ */
public void registerToolbar(GLView glv) {
Toolbar tb = Toolbar.getInstance();
|