aboutsummaryrefslogtreecommitdiffstats
path: root/client
diff options
context:
space:
mode:
authorelmot <elmotelmot.vaadin.com>2017-03-16 13:33:46 +0200
committerHenri Sara <henri.sara@gmail.com>2017-03-21 09:55:02 +0200
commitdf56703f05b751e33ea447f537abe50120ddea23 (patch)
tree6a1fcbf2aa1aa94eef9a4e501980d37ad9a4de9f /client
parent85f51fdc6c4d7b773a02b7455ce0b033163ebcc5 (diff)
downloadvaadin-framework-df56703f05b751e33ea447f537abe50120ddea23.tar.gz
vaadin-framework-df56703f05b751e33ea447f537abe50120ddea23.zip
Add @since 8.0.3 tags
Diffstat (limited to 'client')
-rw-r--r--client/src/main/java/com/vaadin/client/ApplicationConfiguration.java2
-rw-r--r--client/src/main/java/com/vaadin/client/metadata/ConnectorBundleLoader.java4
2 files changed, 6 insertions, 0 deletions
diff --git a/client/src/main/java/com/vaadin/client/ApplicationConfiguration.java b/client/src/main/java/com/vaadin/client/ApplicationConfiguration.java
index 9a8fce9b56..14f9b34486 100644
--- a/client/src/main/java/com/vaadin/client/ApplicationConfiguration.java
+++ b/client/src/main/java/com/vaadin/client/ApplicationConfiguration.java
@@ -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;
diff --git a/client/src/main/java/com/vaadin/client/metadata/ConnectorBundleLoader.java b/client/src/main/java/com/vaadin/client/metadata/ConnectorBundleLoader.java
index 8b3e53aea0..7c515e2c7c 100644
--- a/client/src/main/java/com/vaadin/client/metadata/ConnectorBundleLoader.java
+++ b/client/src/main/java/com/vaadin/client/metadata/ConnectorBundleLoader.java
@@ -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<>();