diff options
author | Artur Signell <artur.signell@itmill.com> | 2010-11-15 06:41:28 +0000 |
---|---|---|
committer | Artur Signell <artur.signell@itmill.com> | 2010-11-15 06:41:28 +0000 |
commit | cdccdf1c9e9f07083a4d686e340775dd2903c608 (patch) | |
tree | efa7dbfd649769788e20936d6231de0e1229b52a /src | |
parent | 46cd961226a1513a4dc385a3b265a4ed36a1aeac (diff) | |
download | vaadin-framework-cdccdf1c9e9f07083a4d686e340775dd2903c608.tar.gz vaadin-framework-cdccdf1c9e9f07083a4d686e340775dd2903c608.zip |
Extracted WidgetSetBuilder hint to separate comment to avoid problems when formatting the file. Formatted using Eclipse Helios SR-1.
svn changeset:15981/svn branch:6.5
Diffstat (limited to 'src')
-rw-r--r-- | src/com/vaadin/terminal/gwt/DefaultWidgetSet.gwt.xml | 26 |
1 files changed, 15 insertions, 11 deletions
diff --git a/src/com/vaadin/terminal/gwt/DefaultWidgetSet.gwt.xml b/src/com/vaadin/terminal/gwt/DefaultWidgetSet.gwt.xml index af7b99c785..20db1721e6 100644 --- a/src/com/vaadin/terminal/gwt/DefaultWidgetSet.gwt.xml +++ b/src/com/vaadin/terminal/gwt/DefaultWidgetSet.gwt.xml @@ -1,11 +1,10 @@ <module> - <!-- + <!-- This GWT module defines the Vaadin DefaultWidgetSet. This is the module + you want to extend when creating an extended widget set, or when creating + a specialized widget set with a subset of the components. --> - This GWT module defines the Vaadin DefaultWidgetSet. This is the - module you want to extend when creating an extended widget set, or - when creating a specialized widget set with a subset of the - components. WS Compiler: manually edited - --> + <!-- Hint for WidgetSetBuilder not to automatically update the file --> + <!-- WS Compiler: manually edited --> <inherits name="com.google.gwt.user.User" /> @@ -13,7 +12,7 @@ <source path="client" /> - <!-- Use our own history impl for IE to workaround #2931. --> + <!-- Use our own history impl for IE to workaround #2931. --> <replace-with class="com.vaadin.terminal.gwt.client.HistoryImplIEVaadin"> <when-type-is class="com.google.gwt.user.client.impl.HistoryImpl" /> <when-property-is name="user.agent" value="ie6" /> @@ -31,12 +30,16 @@ </generate-with> <!-- Fall through to this rule for everything but IE --> - <replace-with class="com.vaadin.terminal.gwt.client.ui.UploadIFrameOnloadStrategy"> - <when-type-is class="com.vaadin.terminal.gwt.client.ui.UploadIFrameOnloadStrategy" /> + <replace-with + class="com.vaadin.terminal.gwt.client.ui.UploadIFrameOnloadStrategy"> + <when-type-is + class="com.vaadin.terminal.gwt.client.ui.UploadIFrameOnloadStrategy" /> </replace-with> - <replace-with class="com.vaadin.terminal.gwt.client.ui.UploadIFrameOnloadStrategyIE"> - <when-type-is class="com.vaadin.terminal.gwt.client.ui.UploadIFrameOnloadStrategy" /> + <replace-with + class="com.vaadin.terminal.gwt.client.ui.UploadIFrameOnloadStrategyIE"> + <when-type-is + class="com.vaadin.terminal.gwt.client.ui.UploadIFrameOnloadStrategy" /> <any> <when-property-is name="user.agent" value="ie6" /> <when-property-is name="user.agent" value="ie8" /> @@ -45,4 +48,5 @@ <entry-point class="com.vaadin.terminal.gwt.client.ApplicationConfiguration" /> + </module> |