-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Henri Kerola
committed
Jan 10, 2015
1 parent
0c8484a
commit 3e1d604
Showing
2 changed files
with
27 additions
and
1 deletion.
There are no files selected for viewing
14 changes: 14 additions & 0 deletions
14
addon/src/main/scala/vaadin/scala/renderer/HtmlRenderer.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package vaadin.scala.renderer | ||
|
||
import com.vaadin.ui.renderer.{ HtmlRenderer => VaadinHtmlRenderer } | ||
import vaadin.scala.renderer.mixins.HtmlRendererMixin | ||
|
||
package mixins { | ||
trait HtmlRendererMixin extends AbstractRendererMixin | ||
} | ||
|
||
/** | ||
* @see com.vaadin.ui.renderer.HtmlRenderer | ||
* @author Henri Kerola / Vaadin | ||
*/ | ||
class HtmlRenderer extends AbstractRenderer[String](new VaadinHtmlRenderer with HtmlRendererMixin) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters