summaryrefslogtreecommitdiffstats
path: root/server/src/com/vaadin/ui/renderers/HtmlRenderer.java
diff options
context:
space:
mode:
authorLeif Åstrand <leif@vaadin.com>2015-02-06 15:09:44 +0200
committerLeif Åstrand <leif@vaadin.com>2015-02-06 15:09:44 +0200
commit16535959cf97dcd7c3e1fb4530a9c9b1833eb5e9 (patch)
tree0be05c96cef354fbc4bc589b7ccbde2144bcd2dc /server/src/com/vaadin/ui/renderers/HtmlRenderer.java
parent22eebbd6394af36999d259092eb329b5909b1f4b (diff)
downloadvaadin-framework-16535959cf97dcd7c3e1fb4530a9c9b1833eb5e9.tar.gz
vaadin-framework-16535959cf97dcd7c3e1fb4530a9c9b1833eb5e9.zip
Rename com.vaadin.ui.renderer to com.vaadin.ui.renderers (#16521)
Change-Id: I6fd0313aaba5619a55f03fb52d72c032ea18f409
Diffstat (limited to 'server/src/com/vaadin/ui/renderers/HtmlRenderer.java')
-rw-r--r--server/src/com/vaadin/ui/renderers/HtmlRenderer.java33
1 files changed, 33 insertions, 0 deletions
diff --git a/server/src/com/vaadin/ui/renderers/HtmlRenderer.java b/server/src/com/vaadin/ui/renderers/HtmlRenderer.java
new file mode 100644
index 0000000000..34774b3825
--- /dev/null
+++ b/server/src/com/vaadin/ui/renderers/HtmlRenderer.java
@@ -0,0 +1,33 @@
+/*
+ * Copyright 2000-2014 Vaadin Ltd.
+ *
+ * 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.vaadin.ui.renderers;
+
+import com.vaadin.ui.Grid.AbstractRenderer;
+
+/**
+ * A renderer for presenting HTML content.
+ *
+ * @since 7.4
+ * @author Vaadin Ltd
+ */
+public class HtmlRenderer extends AbstractRenderer<String> {
+ /**
+ * Creates a new HTML renderer.
+ */
+ public HtmlRenderer() {
+ super(String.class);
+ }
+}