diff options
author | Artur Signell <artur@vaadin.com> | 2015-01-28 22:26:07 +0200 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2015-01-28 22:26:07 +0200 |
commit | e30b3136589799dc95049bcc87d4b7f7e707549e (patch) | |
tree | 2329b3b6f8a33a445cf97d7f63ba2172fa268392 /server/src/com/vaadin/ui/renderer/HtmlRenderer.java | |
parent | 4ad7cefcc06e372df8b67a2456616d7410c768d8 (diff) | |
parent | 6aea785642f66dbde578765dcaa429415c8ac75c (diff) | |
download | vaadin-framework-e30b3136589799dc95049bcc87d4b7f7e707549e.tar.gz vaadin-framework-e30b3136589799dc95049bcc87d4b7f7e707549e.zip |
Merge branch 'origin/grid'
Change-Id: Ia634d113d2b0514aea8e878fc84b1ab3c6f9256c
Diffstat (limited to 'server/src/com/vaadin/ui/renderer/HtmlRenderer.java')
-rw-r--r-- | server/src/com/vaadin/ui/renderer/HtmlRenderer.java | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/server/src/com/vaadin/ui/renderer/HtmlRenderer.java b/server/src/com/vaadin/ui/renderer/HtmlRenderer.java new file mode 100644 index 0000000000..02d153dedf --- /dev/null +++ b/server/src/com/vaadin/ui/renderer/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.renderer; + +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); + } +} |