]> source.dussan.org Git - vaadin-framework.git/commitdiff
Add more 8.0.3 since tags
authorHenri Sara <hesara@vaadin.com>
Tue, 21 Mar 2017 07:55:59 +0000 (09:55 +0200)
committerHenri Sara <henri.sara@gmail.com>
Tue, 21 Mar 2017 08:31:59 +0000 (10:31 +0200)
server/src/main/java/com/vaadin/navigator/Navigator.java
server/src/main/java/com/vaadin/server/BootstrapHandler.java
server/src/main/java/com/vaadin/ui/components/grid/EditorCancelEvent.java
server/src/main/java/com/vaadin/ui/components/grid/EditorSaveEvent.java
shared/src/main/java/com/vaadin/shared/ApplicationConstants.java

index e05244f02a62449179652f700bae58286246745c..83f1dbe739254bac9f1f4f6662f52b153124323e 100644 (file)
@@ -350,20 +350,26 @@ public class Navigator implements Serializable {
 
     /**
      * The {@link UI} bound with the Navigator.
+     *
+     * @since 8.0.3
      */
     protected UI ui;
-    
+
     /**
-     * The {@link NavigationStateManager} that is used to get, listen to
-     * and manipulate the navigation state used by the Navigator.
+     * The {@link NavigationStateManager} that is used to get, listen to and
+     * manipulate the navigation state used by the Navigator.
+     *
+     * @since 8.0.3
      */
     protected NavigationStateManager stateManager;
-    
+
     /**
-     *  The {@link ViewDisplay} used by the Navigator.
+     * The {@link ViewDisplay} used by the Navigator.
+     *
+     * @since 8.0.3
      */
     protected ViewDisplay display;
-    
+
     private View currentView = null;
     private List<ViewChangeListener> listeners = new LinkedList<>();
     private List<ViewProvider> providers = new LinkedList<>();
index 02a8d7ba84d1e7a1731425830813ed71282806e0..81ffb2fe233fc69e54f3d545922796e399f0d79d 100644 (file)
@@ -733,6 +733,9 @@ public abstract class BootstrapHandler extends SynchronizedRequestHandler {
         return appConfig;
     }
 
+    /**
+     * @since 8.0.3
+     */
     protected abstract String getContextRootPath(BootstrapContext context);
 
     protected abstract String getServiceUrl(BootstrapContext context);
index a698687900c4a10b8580fbff9df0fd150781b076..329b3d7f52b8f219050ab7ef43f5c247a8d0eaa9 100644 (file)
@@ -21,10 +21,10 @@ import com.vaadin.ui.Grid;
 
 /**
  * An event that is fired when a Grid editor is cancelled.
- * 
+ *
  * @author Vaadin Ltd
  * @since 8.0
- * 
+ *
  * @see EditorCancelListener
  * @see Editor#addCancelListener(EditorCancelListener)
  *
@@ -37,7 +37,7 @@ public class EditorCancelEvent<T> extends EventObject {
 
     /**
      * Constructor for a editor cancel event.
-     * 
+     *
      * @param editor
      *            the source of the event
      * @param bean
@@ -56,7 +56,7 @@ public class EditorCancelEvent<T> extends EventObject {
 
     /**
      * Gets the editors' grid.
-     * 
+     *
      * @return the editors' grid
      */
     public Grid<T> getGrid() {
@@ -67,6 +67,7 @@ public class EditorCancelEvent<T> extends EventObject {
      * Gets the bean being edited.
      *
      * @return the bean being edited
+     * @since 8.0.3
      */
     public T getBean() {
         return bean;
index 44a58a900f994d388708fb46ca9044b236bb36e1..45cc713430a3e27ea3209cb83b789de7567a5e5c 100644 (file)
@@ -21,10 +21,10 @@ import com.vaadin.ui.Grid;
 
 /**
  * An event that is fired when a Grid editor is saved.
- * 
+ *
  * @author Vaadin Ltd
  * @since 8.0
- * 
+ *
  * @see EditorSaveListener
  * @see Editor#addSaveListener(EditorSaveListener)
  *
@@ -37,7 +37,7 @@ public class EditorSaveEvent<T> extends EventObject {
 
     /**
      * Constructor for a editor save event.
-     * 
+     *
      * @param editor
      *            the source of the event
      * @param bean
@@ -56,7 +56,7 @@ public class EditorSaveEvent<T> extends EventObject {
 
     /**
      * Gets the editors' grid.
-     * 
+     *
      * @return the editors' grid
      */
     public Grid<T> getGrid() {
@@ -67,6 +67,7 @@ public class EditorSaveEvent<T> extends EventObject {
      * Gets the bean being edited.
      *
      * @return the bean being edited
+     * @since 8.0.3
      */
     public T getBean() {
         return bean;
index 8cf30e43b5337ee6468aac1c14d15c750f723f19..3a2b8b2b13e5702e616f956a4887f0db03e34329 100644 (file)
@@ -37,6 +37,8 @@ public class ApplicationConstants implements Serializable {
     public static final String VAADIN_PROTOCOL_PREFIX = "vaadin://";
     /**
      * An internal protocol used for referencing the application context path.
+     *
+     * @since 8.0.3
      */
     public static final String CONTEXT_PROTOCOL_PREFIX = "context://";
     public static final String FONTICON_PROTOCOL_PREFIX = "fonticon://";
@@ -78,6 +80,8 @@ public class ApplicationConstants implements Serializable {
     /**
      * Configuration parameter giving the (in some cases relative) URL to the
      * web application context root.
+     * 
+     * @since 8.0.3
      */
     public static final String CONTEXT_ROOT_URL = "contextRootUrl";