]> source.dussan.org Git - vaadin-framework.git/commitdiff
Add @since 8.0.3 tags
authorelmot <elmotelmot.vaadin.com>
Thu, 16 Mar 2017 11:33:46 +0000 (13:33 +0200)
committerHenri Sara <henri.sara@gmail.com>
Tue, 21 Mar 2017 07:55:02 +0000 (09:55 +0200)
client/src/main/java/com/vaadin/client/ApplicationConfiguration.java
client/src/main/java/com/vaadin/client/metadata/ConnectorBundleLoader.java
server/src/main/java/com/vaadin/navigator/Navigator.java
server/src/main/java/com/vaadin/server/VaadinServletService.java
server/src/main/java/com/vaadin/ui/Grid.java
server/src/main/java/com/vaadin/ui/components/grid/FooterRow.java
server/src/main/java/com/vaadin/ui/components/grid/HeaderRow.java
server/src/main/java/com/vaadin/ui/renderers/ButtonRenderer.java
shared/src/main/java/com/vaadin/shared/VaadinUriResolver.java

index 9a8fce9b563cfbe6910b1c371cc77dbea625d0a8..14f9b344866ae94b6dd7224ad4668cf90f3e58ef 100644 (file)
@@ -313,6 +313,8 @@ public class ApplicationConfiguration implements EntryPoint {
      * Gets the URL to the context root of the web application
      *
      * @return the URL to the server-side context root as a string
+     *
+     * @since 8.0.3
      */
     public String getContextRootUrl() {
         return contextRootUrl;
index 8b3e53aea0938b638fd46ddfb95e01da8c7623ad..7c515e2c7cf2cff89c3d04ac6285f92bd8fc5e30 100644 (file)
@@ -214,6 +214,8 @@ public abstract class ConnectorBundleLoader {
 
     /**
      * Starts loading the deferred bundle if it hasn't already been started.
+     *
+     * @since 8.0.3
      */
     public void ensureDeferredBundleLoaded() {
         if (!isBundleLoaded(DEFERRED_BUNDLE_NAME)) {
@@ -242,6 +244,8 @@ public abstract class ConnectorBundleLoader {
      * This method is intended for testing the loading mechanism.
      *
      * @return a list of bundles, not <code>null</code>
+     *
+     * @since 8.0.3
      */
     public List<String> getLoadedBundles() {
         ArrayList<String> bundles = new ArrayList<>();
index 96660d80a2bd3f1f418d3c881272f4c9448086b7..e05244f02a62449179652f700bae58286246745c 100644 (file)
@@ -993,6 +993,8 @@ public class Navigator implements Serializable {
      * @param state
      *            state string
      * @return suitable provider
+     *
+     * @since 8.0.3
      */
     protected ViewProvider getViewProvider(String state) {
         String longestViewName = null;
index 242966f8cf43190bc8c21844b8630ce265b13dd9..90328e78d96fafdf63b1c945b7c16b0fdadf5920 100644 (file)
@@ -120,6 +120,8 @@ public class VaadinServletService extends VaadinService {
      * @param request
      *            the request for which the location should be determined
      * @return A relative path to the context root. Never ends with a slash (/).
+     *
+     * @since 8.0.3
      */
     public static String getContextRootRelativePath(VaadinRequest request) {
         VaadinServletRequest servletRequest = (VaadinServletRequest) request;
index 175b7d1ae5da399a6631b7bba52be69bfffea619..4604814879c1e8371d985a9cd1147ce1074cb736 100644 (file)
@@ -1121,6 +1121,8 @@ public class Grid<T> extends AbstractListing<T> implements HasComponents,
          * based on the row item.
          *
          * @return the value provider function
+         *
+         * @since 8.0.3
          */
         public SerializableFunction<T, ? extends V> getValueProvider() {
             return valueProvider;
@@ -1822,6 +1824,8 @@ public class Grid<T> extends AbstractListing<T> implements HasComponents,
          * @param renderer
          *            the new renderer
          * @return this column
+         *
+         * @since 8.0.3
          */
         public Column<T, V> setRenderer(Renderer<? super V> renderer) {
             Objects.requireNonNull(renderer, "Renderer can't be null");
@@ -2199,6 +2203,8 @@ public class Grid<T> extends AbstractListing<T> implements HasComponents,
      *
      * @param propertySet
      *            the property set to use
+     *
+     * @since 8.0.3
      */
     protected void setPropertySet(PropertySet<T> propertySet) {
         Objects.requireNonNull(propertySet, "propertySet cannot be null");
@@ -2294,6 +2300,8 @@ public class Grid<T> extends AbstractListing<T> implements HasComponents,
      *
      * @return the used bean type or <code>null</code> if no bean type has been
      *         defined
+     *
+     * @since 8.0.3
      */
     public Class<T> getBeanType() {
         return beanType;
@@ -2417,6 +2425,8 @@ public class Grid<T> extends AbstractListing<T> implements HasComponents,
      * @param renderer
      *            the renderer
      * @return a new column instance
+     *
+     * @since 8.0.3
      */
     protected <V> Column<T, V> createColumn(ValueProvider<T, V> valueProvider,
             AbstractRenderer<? super T, ? super V> renderer) {
@@ -3726,6 +3736,8 @@ public class Grid<T> extends AbstractListing<T> implements HasComponents,
      *
      * @param beanTypeClassName
      *            the fully qualified class name of the bean type
+     *
+     * @since 8.0.3
      */
     @SuppressWarnings("unchecked")
     protected void setBeanType(String beanTypeClassName) {
@@ -3743,6 +3755,8 @@ public class Grid<T> extends AbstractListing<T> implements HasComponents,
      *
      * @param beanType
      *            the bean type class
+     *
+     * @since 8.0.3
      */
     protected void setBeanType(Class<T> beanType) {
         this.beanType = beanType;
index 9a3c1aadb28e7cd48f84e2c2b08cca4c02a08687..25477910fc695798f699cc9a413b669c36a7b8c8 100644 (file)
@@ -139,6 +139,8 @@ public interface FooterRow extends Serializable {
      * The order of the components in the returned collection is not specified.
      *
      * @return a collection of components in the row
+     *
+     * @since 8.0.3
      */
     public Collection<? extends Component> getComponents();
 
index d6c740e72018536a29f81015127a0cc86840ae66..c1e551edb6259323b521e72e9a666b7dc187e0d6 100644 (file)
@@ -139,6 +139,8 @@ public interface HeaderRow extends Serializable {
      * The order of the components in the returned collection is not specified.
      *
      * @return a collection of components in the row
+     *
+     * @since 8.0.3
      */
     public Collection<? extends Component> getComponents();
 }
index 40269adb2687537e22bf247992084bba1c531918..f16b3e6e39bba09db02a4cf9efd6218daf278060 100644 (file)
@@ -91,6 +91,8 @@ public class ButtonRenderer<T> extends ClickableRenderer<T, String> {
      * @param htmlContentAllowed
      *            <code>true</code> to render as HTML, <code>false</code> to
      *            render as text
+     *
+     * @since 8.0.3
      */
     public void setHtmlContentAllowed(boolean htmlContentAllowed) {
         getState().htmlContentAllowed = htmlContentAllowed;
@@ -103,6 +105,8 @@ public class ButtonRenderer<T> extends ClickableRenderer<T, String> {
      *
      * @return <code>true</code> if the renderer renders a HTML,
      *         <code>false</code> if the content is rendered as text
+     *
+     * @since 8.0.3
      */
     public boolean isHtmlContentAllowed() {
         return getState(false).htmlContentAllowed;
index 78bf0de598cb97e81f1d2316402407c7eb000d1d..5755c686bff48be56fa4f3e2a1d792959e88c1a7 100644 (file)
@@ -151,6 +151,8 @@ public abstract class VaadinUriResolver implements Serializable {
      * Gets the URL pointing to the context root.
      *
      * @return the context root URL
+     *
+     * @since 8.0.3
      */
     protected abstract String getContextRootUrl();