This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import java.util.logging.Logger; | |
| import com.google.gwt.core.client.Scheduler; | |
| import com.google.gwt.core.client.Scheduler.ScheduledCommand; | |
| import com.google.gwt.dom.client.Element; | |
| import com.google.gwt.dom.client.NativeEvent; | |
| import com.google.gwt.dom.client.Style; | |
| import com.google.gwt.event.dom.client.MouseDownEvent; | |
| import com.google.gwt.event.dom.client.MouseUpEvent; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import com.google.gwt.core.client.GWT; | |
| import com.google.gwt.resources.client.ClientBundle; | |
| import com.google.gwt.resources.client.CssResource; | |
| public interface ExampleResources extends ClientBundle { | |
| public ExampleResources INSTANCE = GWT.create(ExampleResources.class); | |
| public interface Styles extends CssResource { | |
| String highlight(); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import java.io.Serializable; | |
| import java.util.ArrayList; | |
| import java.util.Date; | |
| import java.util.List; | |
| import com.google.gwt.core.client.GWT; | |
| import com.google.gwt.editor.client.Editor.Path; | |
| import com.google.gwt.user.client.ui.RootPanel; | |
| import com.sencha.gxt.core.client.ValueProvider; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import com.google.gwt.dom.client.Style.Display; | |
| import com.google.gwt.user.client.ui.RootPanel; | |
| import com.sencha.gxt.fx.client.FxElement; | |
| import com.sencha.gxt.fx.client.animation.Fx; | |
| import com.sencha.gxt.widget.core.client.Window; | |
| import com.sencha.gxt.widget.core.client.button.TextButton; | |
| import com.sencha.gxt.widget.core.client.event.SelectEvent; | |
| import com.sencha.gxt.widget.core.client.event.SelectEvent.SelectHandler; | |
| public class WindowTest { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import com.google.gwt.event.shared.EventHandler; | |
| import com.google.gwt.event.shared.GwtEvent; | |
| import com.google.gwt.event.shared.HasHandlers; | |
| import com.google.web.bindery.event.shared.HandlerRegistration; | |
| public class ValidChangeEvent extends GwtEvent<ValidChangeEvent.ChangeHandler> { | |
| private boolean valid; | |
| public ValidChangeEvent(boolean valid) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import com.google.gwt.user.client.ui.HTML; | |
| import com.google.gwt.user.client.ui.RootPanel; | |
| import com.google.gwt.user.client.ui.Widget; | |
| import com.sencha.gxt.core.client.util.Margins; | |
| import com.sencha.gxt.widget.core.client.container.BorderLayoutContainer; | |
| import com.sencha.gxt.widget.core.client.container.BorderLayoutContainer.BorderLayoutData; | |
| import com.sencha.gxt.widget.core.client.container.HorizontalLayoutContainer; | |
| import com.sencha.gxt.widget.core.client.container.HorizontalLayoutContainer.HorizontalLayoutData; | |
| import com.sencha.gxt.widget.core.client.container.CenterLayoutContainer; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import com.google.gwt.user.client.ui.HTML; | |
| import com.google.gwt.user.client.ui.RootPanel; | |
| import com.google.gwt.user.client.ui.Widget; | |
| import com.sencha.gxt.core.client.util.Margins; | |
| import com.sencha.gxt.widget.core.client.container.BorderLayoutContainer; | |
| import com.sencha.gxt.widget.core.client.container.BorderLayoutContainer.BorderLayoutData; | |
| import com.sencha.gxt.widget.core.client.container.BoxLayoutContainer.BoxLayoutData; | |
| import com.sencha.gxt.widget.core.client.container.HBoxLayoutContainer; | |
| import com.sencha.gxt.widget.core.client.container.HBoxLayoutContainer.HBoxLayoutAlign; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import com.google.gwt.user.client.ui.HTML; | |
| import com.google.gwt.user.client.ui.RootPanel; | |
| import com.google.gwt.user.client.ui.Widget; | |
| import com.sencha.gxt.widget.core.client.container.CssFloatLayoutContainer; | |
| import com.sencha.gxt.widget.core.client.container.CssFloatLayoutContainer.CssFloatData; | |
| import com.sencha.gxt.widget.core.client.container.MarginData; | |
| import com.sencha.gxt.widget.core.client.container.SimpleContainer; | |
| public class VerticalLayoutExample { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Buildfile: /Users/branflake2267/git/gwt/build.xml | |
| [taskdef] Could not load definitions from resource net/sf/antcontrib/antlib.xml. It could not be found. | |
| [taskdef] Could not load definitions from resource net/sf/antcount/antlib.xml. It could not be found. | |
| [taskdef] Could not load definitions from resource emma_ant.properties. It could not be found. | |
| build: | |
| [taskdef] Could not load definitions from resource net/sf/antcontrib/antlib.xml. It could not be found. | |
| [taskdef] Could not load definitions from resource net/sf/antcount/antlib.xml. It could not be found. | |
| [taskdef] Could not load definitions from resource emma_ant.properties. It could not be found. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.sencha.gxt.test.client.blc; | |
| import com.google.gwt.user.client.ui.FlowPanel; | |
| import com.google.gwt.user.client.ui.HTML; | |
| import com.google.gwt.user.client.ui.IsWidget; | |
| import com.google.gwt.user.client.ui.RootPanel; | |
| import com.google.gwt.user.client.ui.Widget; | |
| import com.sencha.gxt.core.client.util.Margins; | |
| import com.sencha.gxt.test.client.blc.cust.RowWidget; | |
| import com.sencha.gxt.widget.core.client.ContentPanel; |