diff options
author | Pekka Hyvönen <pekka@vaadin.com> | 2015-05-11 14:05:40 +0300 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2015-05-11 17:32:36 +0000 |
commit | 201ae89df5c999efb20100e02040209c306b3d0f (patch) | |
tree | 01108eeae8b8f2876df51ee9aab417624f52c083 /server/src/com/vaadin/ui/declarative | |
parent | 5ff8617c5cbae50ecdab35c1fa83dea342c69eb4 (diff) | |
download | vaadin-framework-201ae89df5c999efb20100e02040209c306b3d0f.tar.gz vaadin-framework-201ae89df5c999efb20100e02040209c306b3d0f.zip |
Updated all empty @since tags to be published in 7.5.0
Removed invalid @since from MarginInfo.
Change-Id: I7ad0dee47e8686c5cbca05ca1363ae8741642be8
Diffstat (limited to 'server/src/com/vaadin/ui/declarative')
3 files changed, 12 insertions, 12 deletions
diff --git a/server/src/com/vaadin/ui/declarative/Design.java b/server/src/com/vaadin/ui/declarative/Design.java index 6634e5248a..a3589de5e2 100644 --- a/server/src/com/vaadin/ui/declarative/Design.java +++ b/server/src/com/vaadin/ui/declarative/Design.java @@ -94,7 +94,7 @@ public class Design implements Serializable { * Use {@link Design#setComponentMapper(ComponentMapper)} to configure * Vaadin to use a custom component mapper. * - * @since + * @since 7.5.0 * @author Vaadin Ltd */ public interface ComponentMapper extends Serializable { @@ -182,7 +182,7 @@ public class Design implements Serializable { /** * Default implementation of {@link ComponentMapper}, * - * @since + * @since 7.5.0 */ public static class DefaultComponentMapper implements ComponentMapper { @@ -317,7 +317,7 @@ public class Design implements Serializable { * @param componentMapper * the component mapper to set; not <code>null</code> * - * @since + * @since 7.5.0 */ public static void setComponentMapper(ComponentMapper componentMapper) { if (componentMapper == null) { @@ -334,7 +334,7 @@ public class Design implements Serializable { * * @return the component mapper * - * @since + * @since 7.5.0 */ public static ComponentMapper getComponentMapper() { return componentMapper; diff --git a/server/src/com/vaadin/ui/declarative/DesignContext.java b/server/src/com/vaadin/ui/declarative/DesignContext.java index 657e15896c..d6cb970ce8 100644 --- a/server/src/com/vaadin/ui/declarative/DesignContext.java +++ b/server/src/com/vaadin/ui/declarative/DesignContext.java @@ -264,7 +264,7 @@ public class DesignContext implements Serializable { * @see #getPackagePrefixes() * @see #getPackagePrefix(String) * @see #getPackage(String) - * @since + * @since 7.5.0 */ public void addPackagePrefix(String prefix, String packageName) { twoWayMap(prefix, packageName, prefixToPackage, packageToPrefix); @@ -277,7 +277,7 @@ public class DesignContext implements Serializable { * @see #addPackagePrefix(String, String) * @see #getPackagePrefixes() * - * @since + * @since 7.5.0 * @param packageName * the package name to get a prefix for * @return the prefix for the package, or <code>null</code> if no prefix is @@ -291,7 +291,7 @@ public class DesignContext implements Serializable { * Gets all registered package prefixes. * * - * @since + * @since 7.5.0 * @see #getPackage(String) * @return a collection of package prefixes */ @@ -303,7 +303,7 @@ public class DesignContext implements Serializable { * Gets the package corresponding to the give prefix, or <code>null</code> * no package has been registered for the prefix * - * @since + * @since 7.5.0 * @see #addPackagePrefix(String, String) * @param prefix * the prefix to find a package for @@ -684,7 +684,7 @@ public class DesignContext implements Serializable { * connected to a back end system and that the data should thus not be * written. * - * @since + * @since 7.5.0 * @see #setShouldWriteDataDelegate(ShouldWriteDataDelegate) * @param component * the component to check @@ -699,7 +699,7 @@ public class DesignContext implements Serializable { * Sets the delegate that determines whether the container data of a * component should be written out. * - * @since + * @since 7.5.0 * @see #shouldWriteChildren(Component, Component) * @see #getShouldWriteDataDelegate() * @param shouldWriteDataDelegate @@ -719,7 +719,7 @@ public class DesignContext implements Serializable { * Gets the delegate that determines whether the container data of a * component should be written out. * - * @since + * @since 7.5.0 * @see #setShouldWriteDataDelegate(ShouldWriteDataDelegate) * @see #shouldWriteChildren(Component, Component) * @return the shouldWriteDataDelegate the currently use delegate diff --git a/server/src/com/vaadin/ui/declarative/ShouldWriteDataDelegate.java b/server/src/com/vaadin/ui/declarative/ShouldWriteDataDelegate.java index 29a78e1db6..9cb1f1c605 100644 --- a/server/src/com/vaadin/ui/declarative/ShouldWriteDataDelegate.java +++ b/server/src/com/vaadin/ui/declarative/ShouldWriteDataDelegate.java @@ -25,7 +25,7 @@ import com.vaadin.ui.Component; * * @see DesignContext#shouldWriteData(Component) * - * @since + * @since 7.5.0 * @author Vaadin Ltd */ public interface ShouldWriteDataDelegate extends Serializable { |