List of usage examples for com.google.gwt.gadgets.client Gadget subclass-usage
From source file com.akjava.gwt.hangout.apilist.client.APILists.java
/** * Entry point classes define <code>onModuleLoad()</code>. */ @ModulePrefs(// title = "Hangouts API List", width = 550, height = 200)
From source file com.akjava.gwt.volumegraph.client.VolumeGraph.java
@ModulePrefs(// title = "Volume Graph", width = 550, height = 200) // Create a short manifest name (instead of prepending the package prefix) @UseLongManifestName(false) @AllowHtmlQuirksMode(false)
From source file com.google.gwt.gadgets.sample.gadgetrpc.client.GadgetRPC.java
/** * A demonstration of how to use GWT RPC with the gwt-gadgets library. */ @ModulePrefs(title = "Gadget RPC Demo", author = "Eric Z", author_email = "zundel+gadgets@google.com") // Create a short manifest name (instead of prepending the package prefix) @UseLongManifestName(false)
From source file com.google.gwt.gadgets.sample.hellogadgets.client.HelloGadgets.java
/** * HelloWorld Gadget. */ // Added comments at the end of each line to break up Eclipse's auto formatting. @ModulePrefs(// title = "Hello GWT for gadgets!", //
From source file com.google.gwt.gadgets.sample.mealpreferences.client.MealPreferencesGadget.java
/** * Sample gadget from the Getting Started manual. */ @ModulePrefs(title = "MealPreferences Gadget", author = "yournamehere", author_email = "yournamehere@gmail.com") @UseLongManifestName(false) @AllowHtmlQuirksMode(false)
From source file com.google.gwt.gadgets.sample.simplegadget.client.SimpleGadget.java
/** * Sample gadget from the Getting Started manual. */ @ModulePrefs(title = "Original Title", author = "yournamehere", author_email = "yournamehere@gmail.com") @UseLongManifestName(false) @AllowHtmlQuirksMode(false)
From source file com.google.gwt.gadgets.sample.traveler.client.TravelerGadget.java
/** * Traveler Gadget. */ // Added comments at the end of each line to break up Eclipse's auto formatting. @ModulePrefs(// title = "GWT Traveler!", //
From source file com.thezukunft.wave.connectorimpl.WaveGadget.java
/** * A base class for writing a Google Wave Gadget. */ public abstract class WaveGadget<T extends UserPreferences> extends Gadget<T> implements NeedsWave { private WaveFeatureImpl wave;
From source file net.randomhacks.wave.voting.approval.client.ApprovalVoting.java
@ModulePrefs(title = "Approval Voting", author = "Eric Kidd", author_email = "eric.kidd@gmail.com") public class ApprovalVoting extends Gadget<UserPreferences> implements NeedsDynamicHeight, NeedsWave { DynamicHeightFeature dynamicHeightFeature; Wave wave; ChoicesTable table;
From source file org.cobogw.gwt.waveapi.gadget.client.WaveGadget.java
/** * A base class for writing a Google Wave Gadget. */ public abstract class WaveGadget<T extends UserPreferences> extends Gadget<T> implements NeedsWave { private WaveFeature wave;