Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.0.1</version>
<version>3.10.0</version>
<executions>
<execution>
<id>attach-javadocs</id>
Expand All @@ -363,7 +363,10 @@
<configuration>
<quiet>true</quiet>
<doclint>none</doclint>
<additionalparam>-Xdoclint:none</additionalparam>
<failOnWarnings>true</failOnWarnings>
<links>
<link>https://javadoc.io/doc/com.vaadin/vaadin-platform-javadoc/${vaadin.version}</link>
</links>
</configuration>
</plugin>
<plugin>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
* preventing other listeners from processing the event.
* </p>
*
* @param <T> the type of the GridExporter source
* @see GridExporter#setConcurrentDownloadTimeout(long, java.util.concurrent.TimeUnit)
* @see GridExporterConcurrentSettings#setConcurrentDownloadTimeout(long,
* java.util.concurrent.TimeUnit)
*/
@SuppressWarnings("serial")
public class ConcurrentDownloadTimeoutEvent extends EventObject {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*
* http://www.apache.org/licenses/LICENSE-2.0
*
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
Expand All @@ -25,7 +25,7 @@
/**
* Item that can be added to {@link FooterToolbar}.
* <p>
* Default position is {@link FooterToolbarItemPosition.AFTER_EXPORT_BUTTONS}
* Default position is {@link FooterToolbarItemPosition#AFTER_EXPORT_BUTTONS}
*/
public class FooterToolbarItem implements Serializable {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -761,7 +761,7 @@ public List<Column<T>> getColumns() {
}

/**
* Get columns in the positions specified by {@link GridExporter.setColumnPosition}
* Get columns in the positions specified by {@link GridExporter#setColumnPosition(Column, int)}
*/
public List<Column<T>> getColumnsOrdered() {
return columns == null
Expand Down
Loading