aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/vaadin/shared/ui/label/ContentMode.java
diff options
context:
space:
mode:
authorArtur Signell <artur@vaadin.com>2012-08-13 18:24:51 +0300
committerArtur Signell <artur@vaadin.com>2012-08-13 18:34:53 +0300
commit9bc14b90a3ec265587562f2886ec3da1cd904f44 (patch)
treef823bf5a9a6119b4036bb0facedecdad936f33e4 /src/com/vaadin/shared/ui/label/ContentMode.java
parent4a1d729534e1232088529afcd48360d868093a67 (diff)
downloadvaadin-framework-9bc14b90a3ec265587562f2886ec3da1cd904f44.tar.gz
vaadin-framework-9bc14b90a3ec265587562f2886ec3da1cd904f44.zip
Moved com.vaadin.shared files to a shared src folder (#9299)
Diffstat (limited to 'src/com/vaadin/shared/ui/label/ContentMode.java')
-rw-r--r--src/com/vaadin/shared/ui/label/ContentMode.java46
1 files changed, 0 insertions, 46 deletions
diff --git a/src/com/vaadin/shared/ui/label/ContentMode.java b/src/com/vaadin/shared/ui/label/ContentMode.java
deleted file mode 100644
index a58f2cdebb..0000000000
--- a/src/com/vaadin/shared/ui/label/ContentMode.java
+++ /dev/null
@@ -1,46 +0,0 @@
-/*
-@VaadinApache2LicenseForJavaFiles@
- */
-package com.vaadin.shared.ui.label;
-
-/**
- * Content modes defining how the client should interpret a Label's value.
- *
- * @since 7.0.0
- */
-public enum ContentMode {
- /**
- * Content mode, where the label contains only plain text.
- */
- TEXT,
-
- /**
- * Content mode, where the label contains pre formatted text. In this mode
- * newlines are preserved when rendered on the screen.
- */
- PREFORMATTED,
-
- /**
- * Content mode, where the label contains XHTML. Care should be taken to
- * ensure
- */
- XHTML,
-
- /**
- * Content mode, where the label contains well-formed or well-balanced XML.
- * This is handled in the same way as {@link #XHTML}.
- *
- * @deprecated Use {@link #XHTML} instead
- */
- @Deprecated
- XML,
-
- /**
- * Legacy content mode, where the label contains RAW output. This is handled
- * in exactly the same way as {@link #XHTML}.
- *
- * @deprecated Use {@link #XHTML} instead
- */
- @Deprecated
- RAW;
-}