diff options
author | Artur Signell <artur@vaadin.com> | 2012-08-16 10:53:18 +0300 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2012-08-16 10:53:18 +0300 |
commit | 054c4a16f57f693329c3a5f00b9e44288bf781e2 (patch) | |
tree | dc507dc5cad5e4ba250301a4cb32d1125937e290 /server/src/com/vaadin/data | |
parent | 6855529f1dc872fcc0c18a14ae00796e5cbe94bf (diff) | |
download | vaadin-framework-054c4a16f57f693329c3a5f00b9e44288bf781e2.tar.gz vaadin-framework-054c4a16f57f693329c3a5f00b9e44288bf781e2.zip |
Removed more @version included in some files but not in all (#9299)
Diffstat (limited to 'server/src/com/vaadin/data')
11 files changed, 0 insertions, 44 deletions
diff --git a/server/src/com/vaadin/data/Property.java b/server/src/com/vaadin/data/Property.java index 9b6cae2d47..9d6d3e4087 100644 --- a/server/src/com/vaadin/data/Property.java +++ b/server/src/com/vaadin/data/Property.java @@ -111,7 +111,6 @@ public interface Property<T> extends Serializable { * @param <T> * The type of the property * @author Vaadin Ltd - * @version @version@ * @since 7.0 */ public interface Transactional<T> extends Property<T> { @@ -164,8 +163,6 @@ public interface Property<T> extends Serializable { * modification failed because it's in read-only mode. * * @author Vaadin Ltd. - * @version - * @VERSION@ * @since 3.0 */ @SuppressWarnings("serial") @@ -195,8 +192,6 @@ public interface Property<T> extends Serializable { * as a data source. * * @author Vaadin Ltd. - * @version - * @VERSION@ * @since 3.0 */ public interface Viewer extends Serializable { @@ -229,8 +224,6 @@ public interface Property<T> extends Serializable { * </p> * * @author Vaadin Ltd. - * @version - * @VERSION@ * @since 3.0 */ public interface Editor extends Property.Viewer, Serializable { @@ -244,8 +237,6 @@ public interface Property<T> extends Serializable { * changed. * * @author Vaadin Ltd. - * @version - * @VERSION@ * @since 3.0 */ public interface ValueChangeEvent extends Serializable { @@ -263,8 +254,6 @@ public interface Property<T> extends Serializable { * <code>ValueChangeEvent</code> objects. * * @author Vaadin Ltd. - * @version - * @VERSION@ * @since 3.0 */ public interface ValueChangeListener extends Serializable { @@ -293,8 +282,6 @@ public interface Property<T> extends Serializable { * </p> * * @author Vaadin Ltd. - * @version - * @VERSION@ * @since 3.0 */ public interface ValueChangeNotifier extends Serializable { @@ -323,8 +310,6 @@ public interface Property<T> extends Serializable { * status has been changed. * * @author Vaadin Ltd. - * @version - * @VERSION@ * @since 3.0 */ public interface ReadOnlyStatusChangeEvent extends Serializable { @@ -342,8 +327,6 @@ public interface Property<T> extends Serializable { * <code>ReadOnlyStatusChangeEvent</code> objects. * * @author Vaadin Ltd. - * @version - * @VERSION@ * @since 3.0 */ public interface ReadOnlyStatusChangeListener extends Serializable { @@ -374,8 +357,6 @@ public interface Property<T> extends Serializable { * </p> * * @author Vaadin Ltd. - * @version - * @VERSION@ * @since 3.0 */ public interface ReadOnlyStatusChangeNotifier extends Serializable { diff --git a/server/src/com/vaadin/data/Validator.java b/server/src/com/vaadin/data/Validator.java index 80e27270a0..a44579213c 100644 --- a/server/src/com/vaadin/data/Validator.java +++ b/server/src/com/vaadin/data/Validator.java @@ -59,8 +59,6 @@ public interface Validator extends Serializable { * </p> * * @author Vaadin Ltd. - * @version - * @VERSION@ * @since 3.0 */ @SuppressWarnings("serial") @@ -158,8 +156,6 @@ public interface Validator extends Serializable { * the thrower. * * @author Vaadin Ltd. - * @version - * @VERSION@ * @since 5.3.0 */ @SuppressWarnings("serial") diff --git a/server/src/com/vaadin/data/fieldgroup/FieldGroup.java b/server/src/com/vaadin/data/fieldgroup/FieldGroup.java index 3df19f5bc9..44197617d4 100644 --- a/server/src/com/vaadin/data/fieldgroup/FieldGroup.java +++ b/server/src/com/vaadin/data/fieldgroup/FieldGroup.java @@ -39,7 +39,6 @@ import com.vaadin.ui.Form; * </p> * * @author Vaadin Ltd - * @version @version@ * @since 7.0 */ public class FieldGroup implements Serializable { diff --git a/server/src/com/vaadin/data/fieldgroup/FieldGroupFieldFactory.java b/server/src/com/vaadin/data/fieldgroup/FieldGroupFieldFactory.java index 80c012cbdc..5373ae1a47 100644 --- a/server/src/com/vaadin/data/fieldgroup/FieldGroupFieldFactory.java +++ b/server/src/com/vaadin/data/fieldgroup/FieldGroupFieldFactory.java @@ -12,7 +12,6 @@ import com.vaadin.ui.Field; * that should be edited. * * @author Vaadin Ltd. - * @version @version@ * @since 7.0 */ public interface FieldGroupFieldFactory extends Serializable { diff --git a/server/src/com/vaadin/data/util/FilesystemContainer.java b/server/src/com/vaadin/data/util/FilesystemContainer.java index abd3a768b5..c61e24b032 100644 --- a/server/src/com/vaadin/data/util/FilesystemContainer.java +++ b/server/src/com/vaadin/data/util/FilesystemContainer.java @@ -600,8 +600,6 @@ public class FilesystemContainer implements Container.Hierarchical { * A Item wrapper for files in a filesystem. * * @author Vaadin Ltd. - * @version - * @VERSION@ * @since 3.0 */ public class FileItem implements Item { @@ -757,8 +755,6 @@ public class FilesystemContainer implements Container.Hierarchical { * extension. * * @author Vaadin Ltd. - * @version - * @VERSION@ * @since 3.0 */ public class FileExtensionFilter implements FilenameFilter, Serializable { diff --git a/server/src/com/vaadin/data/util/IndexedContainer.java b/server/src/com/vaadin/data/util/IndexedContainer.java index 96c6a34a13..0a88991edf 100644 --- a/server/src/com/vaadin/data/util/IndexedContainer.java +++ b/server/src/com/vaadin/data/util/IndexedContainer.java @@ -421,8 +421,6 @@ public class IndexedContainer extends * changed. * * @author Vaadin Ltd. - * @version - * @VERSION@ * @since 3.0 */ public static class ItemSetChangeEvent extends BaseItemSetChangeEvent { @@ -451,8 +449,6 @@ public class IndexedContainer extends * value has changed. * * @author Vaadin Ltd. - * @version - * @VERSION@ * @since 3.0 */ private static class PropertyValueChangeEvent extends EventObject implements @@ -788,8 +784,6 @@ public class IndexedContainer extends * * @author Vaadin Ltd. * - * @version - * @VERSION@ * @since 3.0 */ private class IndexedContainerProperty implements Property<Object>, diff --git a/server/src/com/vaadin/data/util/MethodProperty.java b/server/src/com/vaadin/data/util/MethodProperty.java index a6e3f995b0..78e863232d 100644 --- a/server/src/com/vaadin/data/util/MethodProperty.java +++ b/server/src/com/vaadin/data/util/MethodProperty.java @@ -692,8 +692,6 @@ public class MethodProperty<T> extends AbstractProperty<T> { * property. * * @author Vaadin Ltd. - * @version - * @VERSION@ * @since 3.0 */ @SuppressWarnings("rawtypes") diff --git a/server/src/com/vaadin/data/util/PropertysetItem.java b/server/src/com/vaadin/data/util/PropertysetItem.java index ac0549d296..a4f20fa734 100644 --- a/server/src/com/vaadin/data/util/PropertysetItem.java +++ b/server/src/com/vaadin/data/util/PropertysetItem.java @@ -161,8 +161,6 @@ public class PropertysetItem implements Item, Item.PropertySetChangeNotifier, * changed. * * @author Vaadin Ltd. - * @version - * @VERSION@ * @since 3.0 */ private static class PropertySetChangeEvent extends EventObject implements diff --git a/server/src/com/vaadin/data/util/QueryContainer.java b/server/src/com/vaadin/data/util/QueryContainer.java index dc7c883a7e..319cf2ad0d 100644 --- a/server/src/com/vaadin/data/util/QueryContainer.java +++ b/server/src/com/vaadin/data/util/QueryContainer.java @@ -42,7 +42,6 @@ import com.vaadin.data.Property; * @see com.vaadin.data.Container * * @author Vaadin Ltd. - * @version * @since 4.0 * * @deprecated will be removed in the future, use the SQLContainer add-on @@ -517,7 +516,6 @@ public class QueryContainer implements Container, Container.Ordered, * The <code>Row</code> class implements methods of Item. * * @author Vaadin Ltd. - * @version * @since 4.0 */ class Row implements Item { diff --git a/server/src/com/vaadin/data/util/TransactionalPropertyWrapper.java b/server/src/com/vaadin/data/util/TransactionalPropertyWrapper.java index d042bfaac2..93cd8898bf 100644 --- a/server/src/com/vaadin/data/util/TransactionalPropertyWrapper.java +++ b/server/src/com/vaadin/data/util/TransactionalPropertyWrapper.java @@ -25,7 +25,6 @@ import com.vaadin.data.Property.ValueChangeNotifier; * @see com.vaadin.data.Property.Transactional * * @author Vaadin Ltd - * @version @version@ * @since 7.0 * * @param <T> diff --git a/server/src/com/vaadin/data/util/converter/Converter.java b/server/src/com/vaadin/data/util/converter/Converter.java index 06aa6ad24c..0c91e3f4f2 100644 --- a/server/src/com/vaadin/data/util/converter/Converter.java +++ b/server/src/com/vaadin/data/util/converter/Converter.java @@ -105,8 +105,6 @@ public interface Converter<PRESENTATION, MODEL> extends Serializable { * {@link Converter#convertToModel(Object, Locale)} could not be converted. * * @author Vaadin Ltd - * @version - * @VERSION@ * @since 7.0 */ public static class ConversionException extends RuntimeException { |