Browse Source

Update empty since tags for 8.4 and 8.3.3 (#10786)

tags/8.4.0.alpha2
Ilia Motornyi 6 years ago
parent
commit
c797b8cbba
No account linked to committer's email address

+ 1
- 1
client/src/main/java/com/vaadin/client/extensions/AbstractEventTriggerExtensionConnector.java View File

@@ -29,7 +29,7 @@ import com.vaadin.shared.extension.PartInformationState;
* limitations. For instance, window may not be open with the round-trip.
*
* @author Vaadin Ltd.
* @since
* @since 8.4
*/
public abstract class AbstractEventTriggerExtensionConnector
extends AbstractExtensionConnector {

+ 1
- 1
client/src/main/java/com/vaadin/client/extensions/EventTrigger.java View File

@@ -34,7 +34,7 @@ import com.google.web.bindery.event.shared.HandlerRegistration;
* {@code com.vaadin.server.EventTrigger} then this interface should be
* implemented by the {@link Widget} used by the client side connector.
*
* @since
* @since 8.4
*/
public interface EventTrigger {


+ 1
- 1
client/src/main/java/com/vaadin/client/extensions/FileDownloaderConnector.java View File

@@ -38,7 +38,7 @@ public class FileDownloaderConnector
/**
* Called when the download should start.
*
* @since
* @since 8.4
*/
@Override
protected void trigger() {

+ 1
- 1
server/src/main/java/com/vaadin/server/BrowserWindowOpener.java View File

@@ -138,7 +138,7 @@ public class BrowserWindowOpener extends AbstractExtension {
* @param eventTrigger
* the trigger to attach this extension to
*
* @since
* @since 8.4
*/
public void extend(EventTrigger eventTrigger) {
super.extend(eventTrigger.getConnector());

+ 1
- 1
server/src/main/java/com/vaadin/server/EventTrigger.java View File

@@ -36,7 +36,7 @@ import com.vaadin.ui.MenuBar;
* connector on the client side must implement
* {@code com.vaadin.client.extensions.EventTrigger}.
*
* @since
* @since 8.4
*/
public interface EventTrigger extends Serializable {


+ 1
- 1
server/src/main/java/com/vaadin/server/FileDownloader.java View File

@@ -82,7 +82,7 @@ public class FileDownloader extends AbstractExtension {
* @param eventTrigger
* the trigger to attach this extension to
*
* @since
* @since 8.4
*/
public void extend(EventTrigger eventTrigger) {
super.extend(eventTrigger.getConnector());

+ 3
- 3
server/src/main/java/com/vaadin/ui/MenuBar.java View File

@@ -230,7 +230,7 @@ implements LegacyComponent, Focusable {
* the text for the menu item
* @throws IllegalArgumentException
*
* @since
* @since 8.4
*/
public MenuBar.MenuItem addItem(String caption) {
return addItem(caption, null, null);
@@ -551,7 +551,7 @@ implements LegacyComponent, Focusable {
* @param caption
* the text for the menu item
*
* @since
* @since 8.4
*/
public MenuBar.MenuItem addItem(String caption) {
return addItem(caption, null, null);
@@ -1032,7 +1032,7 @@ implements LegacyComponent, Focusable {
* Gets the menu bar this item is part of.
*
* @return the menu bar this item is attached to
* @since
* @since 8.4
*/
public MenuBar getMenuBar() {
return MenuBar.this;

+ 1
- 1
shared/src/main/java/com/vaadin/shared/extension/PartInformationState.java View File

@@ -20,7 +20,7 @@ import com.vaadin.shared.communication.SharedState;
/**
* Shared state for {@code AbstractEventTriggerExtensionConnector} extension.
*
* @since
* @since 8.4
*/
public class PartInformationState extends SharedState {


+ 1
- 1
testbench-api/src/main/java/com/vaadin/testbench/elements/RadioButtonGroupElement.java View File

@@ -45,7 +45,7 @@ public class RadioButtonGroupElement extends AbstractSingleSelectElement {
* Gets the list of option elements for this check box group.
*
* @return list of option elements
* @since
* @since 8.3.3
*/
public List<WebElement> getOptionElements() {
return findElements(bySelectOption);

Loading…
Cancel
Save