Subversion Repository Public Repository

litesoft

Diff Revisions 49 vs 133 for /trunk/Java/GWT/Client/src/org/litesoft/GWT/client/widgets/SubmitButton.java

Diff revisions: vs.
  @@ -1,20 +1,6 @@
1 1 // This Source Code is in the Public Domain per: http://litesoft.org/License.txt
2 2 package org.litesoft.GWT.client.widgets;
3 3
4 - import com.google.gwt.event.dom.client.*;
5 -
6 - public class SubmitButton extends GreenButton
4 + public class SubmitButton
7 5 {
8 - public static final String SUBMIT_TOOL_TIP = "Submit/save/commit the unsaved changes (the yellow fields)";
9 -
10 - public SubmitButton( ClickHandler pHandler )
11 - {
12 - super( "Submit", SUBMIT_TOOL_TIP, "", pHandler );
13 - }
14 -
15 - @Override
16 - public void setEnabled( boolean pEnabled )
17 - {
18 - super.setEnabled( pEnabled ); // For Break Pointing
19 - }
20 6 }