Revision: 10200
Author:   [email protected]
Date:     Fri May 20 06:32:48 2011
Log:      Better home for ImageResourceRenderer

Review at http://gwt-code-reviews.appspot.com/1446807

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

Added:
 /trunk/user/src/com/google/gwt/user/client/ui/ImageResourceRenderer.java
Deleted:
 /trunk/user/src/com/google/gwt/cell/client/ImageResourceRenderer.java
Modified:
 /trunk/user/src/com/google/gwt/cell/client/ImageResourceCell.java

=======================================
--- /dev/null
+++ /trunk/user/src/com/google/gwt/user/client/ui/ImageResourceRenderer.java Fri May 20 06:32:48 2011
@@ -0,0 +1,31 @@
+/*
+ * Copyright 2011 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.user.client.ui;
+
+import com.google.gwt.resources.client.ImageResource;
+import com.google.gwt.safehtml.shared.SafeHtml;
+import com.google.gwt.safehtml.shared.SafeHtmlUtils;
+import com.google.gwt.text.shared.AbstractSafeHtmlRenderer;
+
+/**
+ * Given an {@link ImageResource}, renders a span element to show it.
+ */
+public class ImageResourceRenderer extends AbstractSafeHtmlRenderer<ImageResource> {
+  @Override
+  public SafeHtml render(ImageResource image) {
+ return SafeHtmlUtils.fromTrustedString(AbstractImagePrototype.create(image).getHTML());
+  }
+}
=======================================
--- /trunk/user/src/com/google/gwt/cell/client/ImageResourceRenderer.java Thu May 19 03:45:45 2011
+++ /dev/null
@@ -1,32 +0,0 @@
-/*
- * Copyright 2011 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.cell.client;
-
-import com.google.gwt.resources.client.ImageResource;
-import com.google.gwt.safehtml.shared.SafeHtml;
-import com.google.gwt.safehtml.shared.SafeHtmlUtils;
-import com.google.gwt.text.shared.AbstractSafeHtmlRenderer;
-import com.google.gwt.user.client.ui.AbstractImagePrototype;
-
-/**
- * Given an {@link ImageResource}, renders a span element to show it.
- */
-public class ImageResourceRenderer extends AbstractSafeHtmlRenderer<ImageResource> {
-  @Override
-  public SafeHtml render(ImageResource image) {
- return SafeHtmlUtils.fromTrustedString(AbstractImagePrototype.create(image).getHTML());
-  }
-}
=======================================
--- /trunk/user/src/com/google/gwt/cell/client/ImageResourceCell.java Thu May 19 03:45:45 2011 +++ /trunk/user/src/com/google/gwt/cell/client/ImageResourceCell.java Fri May 20 06:32:48 2011
@@ -17,6 +17,7 @@

 import com.google.gwt.resources.client.ImageResource;
 import com.google.gwt.safehtml.shared.SafeHtmlBuilder;
+import com.google.gwt.user.client.ui.ImageResourceRenderer;

 /**
  * An {@link AbstractCell} used to render an {@link ImageResource}.

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

Reply via email to