Revision: 6342
Author: rj...@google.com
Date: Fri Oct  9 22:09:58 2009
Log: Revert "Introduces support for DataResource to UiBinder..."
due to IE failure of
com.google.gwt.uibinder.sample.client.UiBinderTest.testDataResource:

expected=mhtml:http://localhost:62089/com.google.gwt.uibinder.UiBinderTestModule.JUnit/C0B555CDF59C4436E62D0BA9138EA19D.cache.txt!cid:r0
    
actual=mhtml:http://localhost:62089/com.google.gwt.uibinder.UiBinderTestModule.JUnit/60B9FC4B7AA15D5532DD6DDA166E77D4.cache.txt!cid:r3

This reverts tr...@6341

http://code.google.com/p/google-web-toolkit/source/detail?r=6342

Deleted:
   
/trunk/user/src/com/google/gwt/uibinder/rebind/model/ImplicitDataResource.java
  /trunk/user/src/com/google/gwt/uibinder/sample/client/heart.cur
Modified:
  /trunk/user/src/com/google/gwt/uibinder/rebind/BundleWriter.java
  /trunk/user/src/com/google/gwt/uibinder/rebind/UiBinderParser.java
   
/trunk/user/src/com/google/gwt/uibinder/rebind/model/ImplicitClientBundle.java
   
/trunk/user/src/com/google/gwt/uibinder/rebind/model/ImplicitCssResource.java
   
/trunk/user/src/com/google/gwt/uibinder/rebind/model/ImplicitImageResource.java
  /trunk/user/src/com/google/gwt/uibinder/sample/client/WidgetBasedUi.java
  /trunk/user/src/com/google/gwt/uibinder/sample/client/WidgetBasedUi.ui.xml
  /trunk/user/test/com/google/gwt/uibinder/sample/client/UiBinderTest.java

=======================================
---  
/trunk/user/src/com/google/gwt/uibinder/rebind/model/ImplicitDataResource.java  
 
Fri Oct  9 17:08:00 2009
+++ /dev/null
@@ -1,37 +0,0 @@
-/*
- * Copyright 2009 Google Inc.
- *
- * Licensed under the Apache License, Version 2.0 (the "License"); you may  
not
- * use this file except in compliance with the License. You may obtain a  
copy of
- * the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,  
WITHOUT
- * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
- * License for the specific language governing permissions and limitations  
under
- * the License.
- */
-package com.google.gwt.uibinder.rebind.model;
-
-/**
- * Models a method returning a DataResource on a generated ClientBundle.
- */
-public class ImplicitDataResource {
-  private final String name;
-  private final String source;
-
-  ImplicitDataResource(String name, String source) {
-    this.name = name;
-    this.source = source;
-  }
-
-  public String getName() {
-    return name;
-  }
-
-  public String getSource() {
-    return source;
-  }
-}
=======================================
--- /trunk/user/src/com/google/gwt/uibinder/sample/client/heart.cur     Fri  
Oct  9 17:08:00 2009
+++ /dev/null   
Binary file, no diff available.
=======================================
--- /trunk/user/src/com/google/gwt/uibinder/rebind/BundleWriter.java    Fri  
Oct  9 17:08:00 2009
+++ /trunk/user/src/com/google/gwt/uibinder/rebind/BundleWriter.java    Fri  
Oct  9 22:09:58 2009
@@ -19,14 +19,12 @@
  import com.google.gwt.core.ext.typeinfo.JClassType;
  import com.google.gwt.core.ext.typeinfo.TypeOracle;
  import com.google.gwt.resources.client.ClientBundle;
-import com.google.gwt.resources.client.DataResource;
  import com.google.gwt.resources.client.ImageResource;
  import com.google.gwt.resources.client.CssResource.Strict;
  import com.google.gwt.resources.client.ImageResource.ImageOptions;
  import com.google.gwt.resources.client.ImageResource.RepeatStyle;
  import com.google.gwt.uibinder.rebind.model.ImplicitClientBundle;
  import com.google.gwt.uibinder.rebind.model.ImplicitCssResource;
-import com.google.gwt.uibinder.rebind.model.ImplicitDataResource;
  import com.google.gwt.uibinder.rebind.model.ImplicitImageResource;

  /**
@@ -40,11 +38,10 @@
    private final TypeOracle oracle;

    private final JClassType clientBundleType;
-  private final JClassType dataResourceType;
+  private final JClassType strictAnnotationType;
    private final JClassType imageOptionType;
    private final JClassType imageResourceType;
    private final JClassType repeatStyleType;
-  private final JClassType strictAnnotationType;

    public BundleWriter(ImplicitClientBundle bundleClass,
        PrintWriterManager writerManager, TypeOracle oracle,
@@ -56,11 +53,10 @@
      this.oracle = oracle;

      clientBundleType = oracle.findType(ClientBundle.class.getName());
-    dataResourceType =  
oracle.findType(DataResource.class.getCanonicalName());
+    strictAnnotationType =  
oracle.findType(Strict.class.getCanonicalName());
      imageOptionType =  
oracle.findType(ImageOptions.class.getCanonicalName());
      imageResourceType =  
oracle.findType(ImageResource.class.getCanonicalName());
      repeatStyleType =  
oracle.findType(RepeatStyle.class.getCanonicalName());
-    strictAnnotationType =  
oracle.findType(Strict.class.getCanonicalName());
    }

    public void write() throws UnableToCompleteException {
@@ -80,34 +76,25 @@
      }

      // Imports
-    writer.write("import %s;", clientBundleType.getQualifiedSourceName());
-    // TODO(rjrjr,bobv) Remove the strict import when strict becomes  
default, RSN
-    writer.write("import %s;",  
strictAnnotationType.getQualifiedSourceName());
-    writer.write("import %s;", dataResourceType.getQualifiedSourceName());
      writer.write("import %s;", imageResourceType.getQualifiedSourceName());
      writer.write("import %s;", imageOptionType.getQualifiedSourceName());
+    writer.write("import %s;", clientBundleType.getQualifiedSourceName());
+    writer.write("import %s;",  
strictAnnotationType.getQualifiedSourceName());
      writer.newline();

      // Open interface
      writer.write("public interface %s extends ClientBundle {",
          bundleClass.getClassName());
      writer.indent();
-
+
      // Write css methods
      for (ImplicitCssResource css : bundleClass.getCssMethods()) {
-      // TODO(rjrjr,bobv) Remove the @Strict when strict becomes default,  
RSN
        writer.write("@Strict @Source(\"%s\")", css.getSource());
        writer.write("%s %s();", css.getClassName(), css.getName());
        writer.newline();
      }
-
-    // Write data methods
-    for (ImplicitDataResource data : bundleClass.getDataMethods()) {
-      writer.write("@Source(\"%s\")", data.getSource());
-      writer.write("%s %s();", dataResourceType.getName(), data.getName());
-      writer.newline();
-    }
-
+
+    writer.newline();
      writeImageMethods();

      // Close interface.
=======================================
--- /trunk/user/src/com/google/gwt/uibinder/rebind/UiBinderParser.java  Fri  
Oct  9 17:08:00 2009
+++ /trunk/user/src/com/google/gwt/uibinder/rebind/UiBinderParser.java  Fri  
Oct  9 22:09:58 2009
@@ -20,13 +20,11 @@
  import com.google.gwt.core.ext.typeinfo.JMethod;
  import com.google.gwt.core.ext.typeinfo.TypeOracle;
  import com.google.gwt.resources.client.CssResource;
-import com.google.gwt.resources.client.DataResource;
  import com.google.gwt.resources.client.ImageResource;
  import com.google.gwt.resources.client.ImageResource.RepeatStyle;
  import com.google.gwt.uibinder.rebind.messages.MessagesWriter;
  import com.google.gwt.uibinder.rebind.model.ImplicitClientBundle;
  import com.google.gwt.uibinder.rebind.model.ImplicitCssResource;
-import com.google.gwt.uibinder.rebind.model.ImplicitDataResource;
  import com.google.gwt.uibinder.rebind.model.ImplicitImageResource;
  import com.google.gwt.uibinder.rebind.model.OwnerField;

@@ -52,7 +50,6 @@
    private final ImplicitClientBundle bundleClass;
    private final JClassType cssResourceType;
    private final JClassType imageResourceType;
-  private final JClassType dataResourceType;

    public UiBinderParser(UiBinderWriter writer, MessagesWriter  
messagesWriter,
        FieldManager fieldManager, TypeOracle oracle,
@@ -64,7 +61,6 @@
      this.bundleClass = bundleClass;
      this.cssResourceType =  
oracle.findType(CssResource.class.getCanonicalName());
      this.imageResourceType =  
oracle.findType(ImageResource.class.getCanonicalName());
-    this.dataResourceType =  
oracle.findType(DataResource.class.getCanonicalName());
    }

    /**
@@ -74,7 +70,9 @@
    public String parse(XMLElement elem) throws UnableToCompleteException {
      // TODO(rjrjr) Clearly need to break these find* methods out into  
their own
      // parsers, an so need a registration scheme for uibinder-specific  
parsers
+    findStyles(elem);
      findResources(elem);
+    findImages(elem);
      messagesWriter.findMessagesConfig(elem);
      XMLElement uiRoot = elem.consumeSingleChildElement();
      return writer.parseElementToField(uiRoot);
@@ -112,26 +110,15 @@
      return resourceType;
    }

-  /**
-   * Interprets <ui:data> elements
-   */
-  private void createData(XMLElement elem)  throws  
UnableToCompleteException {
-    String name = elem.consumeRequiredAttribute(FIELD_ATTRIBUTE);
-    String source = elem.consumeRequiredAttribute(SOURCE_ATTRIBUTE);
-    ImplicitDataResource dataMethod = bundleClass.createDataResource(name,  
source);
-    FieldWriter field = fieldManager.registerField(dataResourceType,
-        dataMethod.getName());
-    field.setInitializer(String.format("%s.%s()",  
bundleClass.getFieldName(),
-        dataMethod.getName()));
-  }
-
    /**
     * Interprets <ui:image> elements
     */
    private void createImage(XMLElement elem) throws  
UnableToCompleteException {
      String name = elem.consumeRequiredAttribute(FIELD_ATTRIBUTE);
-    // @source is optional on ImageResource
-    String source = elem.consumeAttribute(SOURCE_ATTRIBUTE, null);
+    String source = elem.consumeAttribute(SOURCE_ATTRIBUTE, null); //  
@source is
+                                                                   //  
optional
+                                                                   // on
+                                                                   //  
ImageResource

      Boolean flipRtl = null;
      if (elem.hasAttribute(FLIP_RTL_ATTRIBUTE)) {
@@ -221,33 +208,51 @@
      field.setInitializer(String.format("%s.%s()",  
bundleClass.getFieldName(),
          cssMethod.getName()));
    }
+
+  private void findImages(XMLElement binderElement)
+      throws UnableToCompleteException {
+    binderElement.consumeChildElements(new  
XMLElement.Interpreter<Boolean>() {
+      public Boolean interpretElement(XMLElement elem)
+          throws UnableToCompleteException {
+        if (!(writer.isBinderElement(elem)  
&& "image".equals(elem.getLocalName()))) {
+          return false; // Not of interest, do not consume
+        }
+
+        createImage(elem);
+
+        return true; // Yum
+      }
+    });
+  }

    private void findResources(XMLElement binderElement)
        throws UnableToCompleteException {
      binderElement.consumeChildElements(new  
XMLElement.Interpreter<Boolean>() {
        public Boolean interpretElement(XMLElement elem)
            throws UnableToCompleteException {
-
-        if (writer.isBinderElement(elem)) {
-          final String localName = elem.getLocalName();
-          if ("with".equals(localName)) {
-            createResource(elem);
-          }
-          else if ("image".equals(localName)) {
-            createImage(elem);
-          }
-          else if ("style".equals(localName)) {
-            createStyle(elem);
-          }
-          else if ("data".equals(localName)) {
-            createData(elem);
-          }
-          else {
-            writer.die("%s unrecognized, or not appropriate as a top level  
element");
-          }
-          return true;
-        }
-        return false; // leave it be
+        if (!(writer.isBinderElement(elem)  
&& "with".equals(elem.getLocalName()))) {
+          return false; // Not of interest, do not consume
+        }
+
+        createResource(elem);
+
+        return true; // Yum
+      }
+    });
+  }
+
+  private void findStyles(XMLElement binderElement)
+      throws UnableToCompleteException {
+    binderElement.consumeChildElements(new  
XMLElement.Interpreter<Boolean>() {
+      public Boolean interpretElement(XMLElement elem)
+          throws UnableToCompleteException {
+        if (!(writer.isBinderElement(elem)  
&& "style".equals(elem.getLocalName()))) {
+          return false; // Not of interest, do not consume
+        }
+
+        createStyle(elem);
+
+        return true; // consume
        }
      });
    }
=======================================
---  
/trunk/user/src/com/google/gwt/uibinder/rebind/model/ImplicitClientBundle.java  
 
Fri Oct  9 17:08:00 2009
+++  
/trunk/user/src/com/google/gwt/uibinder/rebind/model/ImplicitClientBundle.java  
 
Fri Oct  9 22:09:58 2009
@@ -20,17 +20,16 @@
  import com.google.gwt.uibinder.rebind.MortalLogger;

  import java.util.Collections;
-import java.util.LinkedHashSet;
+import java.util.HashSet;
  import java.util.Set;

  /**
   * Models the ClientBundle to be generated from a ui.xml.
   */
  public class ImplicitClientBundle {
-  // LinkedHashSets for consistent order across recompiles
-  private final LinkedHashSet<ImplicitCssResource> cssMethods = new  
LinkedHashSet<ImplicitCssResource>();
-  private final LinkedHashSet<ImplicitImageResource> imageMethods = new  
LinkedHashSet<ImplicitImageResource>();
-  private final LinkedHashSet<ImplicitDataResource> dataMethods =  new  
LinkedHashSet<ImplicitDataResource>();
+
+  private final Set<ImplicitCssResource> cssMethods = new  
HashSet<ImplicitCssResource>();
+  private final Set<ImplicitImageResource> imageMethods = new  
HashSet<ImplicitImageResource>();
    private final String packageName;
    private final String className;
    private final String fieldName;
@@ -55,7 +54,7 @@
    /**
     * Called to declare a new CssResource accessor on this bundle.
     *
-   * @param name the method name and the ui:field name
+   * @param name the method name
     * @param source path to the .css file resource
     * @param extendedInterface the public interface implemented by this
     *          CssResource, or null
@@ -69,26 +68,12 @@
      cssMethods.add(css);
      return css;
    }
-
-  /**
-   * Called to declare a new DataResource accessor on this bundle.
-   * All params must be non-null
-   *
-   * @param name the method name and the ui:field name
-   * @param source path to the resource
-   * @return
-   */
-  public ImplicitDataResource createDataResource(String name, String  
source) {
-    ImplicitDataResource data = new ImplicitDataResource(name, source);
-    dataMethods.add(data);
-    return data;
-  }

    /**
     * Called to declare a new ImageResource accessor on this bundle.
     *
-   * @param name the method name and the ui:field name
-   * @param source path to the image resource, or null if none was  
specified
+   * @param name the method name
+   * @param source path the image resource, or null if none was specified
     * @param flipRtl value for the flipRtl ImageOption, or null if none was
     *          specified
     * @param repeatStyle value of the RepeatStyle ImageOption, or null if  
none
@@ -109,15 +94,11 @@
    public Set<ImplicitCssResource> getCssMethods() {
      return Collections.unmodifiableSet(cssMethods);
    }
-
-  public Set<ImplicitDataResource> getDataMethods() {
-    return Collections.unmodifiableSet(dataMethods);
-  }

    public String getFieldName() {
      return fieldName;
    }
-
+
    public Set<ImplicitImageResource> getImageMethods() {
      return Collections.unmodifiableSet(imageMethods);
    }
=======================================
---  
/trunk/user/src/com/google/gwt/uibinder/rebind/model/ImplicitCssResource.java   
 
Fri Oct  9 17:08:00 2009
+++  
/trunk/user/src/com/google/gwt/uibinder/rebind/model/ImplicitCssResource.java   
 
Fri Oct  9 22:09:58 2009
@@ -44,7 +44,7 @@
    private final MortalLogger logger;
    private File generatedFile;

-  ImplicitCssResource(String packageName, String className, String name,
+  public ImplicitCssResource(String packageName, String className, String  
name,
        String source, JClassType extendedInterface, String body,
        MortalLogger logger) {
      this.packageName = packageName;
=======================================
---  
/trunk/user/src/com/google/gwt/uibinder/rebind/model/ImplicitImageResource.java 
 
Fri Oct  9 17:08:00 2009
+++  
/trunk/user/src/com/google/gwt/uibinder/rebind/model/ImplicitImageResource.java 
 
Fri Oct  9 22:09:58 2009
@@ -26,7 +26,7 @@
    private final Boolean flipRtl;
    private final RepeatStyle repeatStyle;

-  ImplicitImageResource(
+  public ImplicitImageResource(
        String name, String source, Boolean flipRtl, RepeatStyle  
repeatStyle) {
      this.name = name;
      this.source = source;
=======================================
---  
/trunk/user/src/com/google/gwt/uibinder/sample/client/WidgetBasedUi.java        
 
Fri Oct  9 17:08:00 2009
+++  
/trunk/user/src/com/google/gwt/uibinder/sample/client/WidgetBasedUi.java        
 
Fri Oct  9 22:09:58 2009
@@ -25,7 +25,6 @@
  import com.google.gwt.dom.client.StyleInjector;
  import com.google.gwt.dom.client.TableElement;
  import com.google.gwt.resources.client.CssResource;
-import com.google.gwt.resources.client.DataResource;
  import com.google.gwt.resources.client.ImageResource;
  import com.google.gwt.resources.client.CssResource.Shared;
  import com.google.gwt.uibinder.client.UiBinder;
@@ -120,7 +119,6 @@
    @UiField ImageResource prettyTilingImage;
    @UiField Image babyWidget;
    @UiField ParagraphElement simpleSpriteParagraph;
-  @UiField DataResource heartCursorResource;

    public WidgetBasedUi() {
      this.bundledLabel = new Label();
=======================================
---  
/trunk/user/src/com/google/gwt/uibinder/sample/client/WidgetBasedUi.ui.xml      
 
Fri Oct  9 17:08:00 2009
+++  
/trunk/user/src/com/google/gwt/uibinder/sample/client/WidgetBasedUi.ui.xml      
 
Fri Oct  9 22:09:58 2009
@@ -96,14 +96,6 @@
    }
  </ui:style>

-<ui:style field='cursorifficStyle'>
-  @url cursor heartCursorResource;
-  .cursor {
-    cursor:cursor,pointer;
-  }
-</ui:style>
-<ui:data field='heartCursorResource' src='heart.cur'/>
-
  <ui:style field='mySpritelyStyle'>
    @sprite .simpleSprite {
      gwt-image: "prettyImage";
@@ -182,18 +174,14 @@
        </p>

        <p>I bet you like babies in your Image widgets.</p>
-      <div class='{cursorifficStyle.cursor}'>
        <gwt:Image ui:field='babyWidget' resource='{prettyImage}'/>
-      </div>

        <p ui:field='simpleSpriteParagraph'
-          class='{mySpritelyStyle.simpleSprite} {mySpritelyStyle.garish}
-            {cursorifficStyle.cursor}' >
+          class='{mySpritelyStyle.simpleSprite} {mySpritelyStyle.garish}' >
          And sprites too
        </p>

-      <p class='{mySpritelyStyle.tilingSprite} {mySpritelyStyle.garish}
-          {cursorifficStyle.cursor}'>
+      <p class='{mySpritelyStyle.tilingSprite} {mySpritelyStyle.garish}'>
          Well how do you like  <br/>
          tiled sprited images...of babies!! <br/>
          Well of course you do. Who wouldn't?
@@ -454,12 +442,10 @@
      <b>HTML:</b>
      <pre style="border: 1px dashed #666; padding: 5px 0;">
    &lt;div id="gwt-debug-joe"
-      class="gwt-Label newStyle anotherStyle gwt-Label-dependentStyle
-        gwt-Label-anotherDependentStyle"&gt;
+      class="gwt-Label newStyle anotherStyle gwt-Label-dependentStyle  
gwt-Label-anotherDependentStyle"&gt;
      A label with a debug id
    &lt;/div&gt;
-  &lt;button id="gwt-debug-myButton" class="gwt-Button buttonStyle"  
tabindex="0"
-    type="button"&gt;Go&lt;/button&gt;</pre>
+  &lt;button id="gwt-debug-myButton" class="gwt-Button buttonStyle"  
tabindex="0" type="button"&gt;Go&lt;/button&gt;</pre>

      <gwt:FlowPanel>
        <gwt:Label ui:field="lblDebugId" debugId="joe"  
addStyleNames="newStyle, anotherStyle"  
addStyleDependentNames="dependentStyle, anotherDependentStyle">
=======================================
---  
/trunk/user/test/com/google/gwt/uibinder/sample/client/UiBinderTest.java        
 
Fri Oct  9 17:08:00 2009
+++  
/trunk/user/test/com/google/gwt/uibinder/sample/client/UiBinderTest.java        
 
Fri Oct  9 22:09:58 2009
@@ -25,7 +25,6 @@
  import com.google.gwt.junit.Platform;
  import com.google.gwt.junit.client.GWTTestCase;
  import com.google.gwt.resources.client.ClientBundle;
-import com.google.gwt.resources.client.DataResource;
  import com.google.gwt.user.client.DOM;
  import com.google.gwt.user.client.ui.DisclosurePanel;
  import com.google.gwt.user.client.ui.DockPanel;
@@ -353,16 +352,6 @@
      assertEquals(widgetUi.prettyImage.getLeft(),  
widgetUi.babyWidget.getOriginLeft());
    }

-  interface HeartBundle extends ClientBundle {
-    @Source("heart.cur")
-    DataResource heart();
-  }
-
-  public void testDataResource() {
-    HeartBundle b = GWT.create(HeartBundle.class);
-    assertEquals(b.heart().getUrl(),  
widgetUi.heartCursorResource.getUrl());
-  }
-
    public void testSpritedElement() {
      assertEquals(widgetUi.prettyImage.getWidth(),  
widgetUi.simpleSpriteParagraph.getOffsetWidth());
      assertEquals(widgetUi.prettyImage.getHeight(),  
widgetUi.simpleSpriteParagraph.getOffsetHeight());

--~--~---------~--~----~------------~-------~--~----~
http://groups.google.com/group/Google-Web-Toolkit-Contributors
-~----------~----~----~----~------~----~------~--~---

Reply via email to