summaryrefslogtreecommitdiffstats
path: root/server/src/com/vaadin/data/util/sqlcontainer
diff options
context:
space:
mode:
authorArtur Signell <artur@vaadin.com>2012-08-22 21:48:34 +0300
committerArtur Signell <artur@vaadin.com>2012-08-22 22:24:34 +0300
commit8d2d0adb625f478658b7115ae2dfb007aad079b5 (patch)
treeb25f26f846a111a0eb557a377357568fb14ee898 /server/src/com/vaadin/data/util/sqlcontainer
parentaf2638fc57cf3d9f6dc84957bb6ee4b256ec60e7 (diff)
downloadvaadin-framework-8d2d0adb625f478658b7115ae2dfb007aad079b5.tar.gz
vaadin-framework-8d2d0adb625f478658b7115ae2dfb007aad079b5.zip
Removed API deprecated in Vaadin 6 (#9071)
Diffstat (limited to 'server/src/com/vaadin/data/util/sqlcontainer')
-rw-r--r--server/src/com/vaadin/data/util/sqlcontainer/ColumnProperty.java6
1 files changed, 4 insertions, 2 deletions
diff --git a/server/src/com/vaadin/data/util/sqlcontainer/ColumnProperty.java b/server/src/com/vaadin/data/util/sqlcontainer/ColumnProperty.java
index 0146c92b5c..6e5ba0dc57 100644
--- a/server/src/com/vaadin/data/util/sqlcontainer/ColumnProperty.java
+++ b/server/src/com/vaadin/data/util/sqlcontainer/ColumnProperty.java
@@ -69,7 +69,9 @@ final public class ColumnProperty implements Property {
* @param value
* @param type
*
- * @deprecated
+ * @deprecated as of 7.0. Use
+ * {@link #ColumnProperty(String, boolean, boolean, boolean, boolean, Object, Class)
+ * instead
*/
@Deprecated
public ColumnProperty(String propertyId, boolean readOnly,
@@ -144,7 +146,7 @@ final public class ColumnProperty implements Property {
@Override
public void setValue(Object newValue) throws ReadOnlyException,
- ConversionException {
+ ConversionException {
if (newValue == null && !nullable) {
throw new NotNullableException(
"Null values are not allowed for this property.");