diff --git a/packages/dashbuilder/appformer/uberfire-api/src/main/java/org/uberfire/debug/Debug.java b/packages/dashbuilder/appformer/uberfire-api/src/main/java/org/uberfire/debug/Debug.java index 4b36717044f..0e5df803083 100644 --- a/packages/dashbuilder/appformer/uberfire-api/src/main/java/org/uberfire/debug/Debug.java +++ b/packages/dashbuilder/appformer/uberfire-api/src/main/java/org/uberfire/debug/Debug.java @@ -87,8 +87,7 @@ public static String objectId(Object o) { *
+ *
* If the given part already belongs to an existing panel, it will be removed from that panel by a call to * removePart(part). * @param part The Part to add. Must not be null. The part's place must specify a WorkbenchActivity bean. @@ -70,9 +69,8 @@ public interface PanelDefinition { /** * Specifies content that should be put in this panel's main display area when it is materialized. - *
* This is a convenience method equivalent to
- * addPart(new PartDefinitionImpl(DefaultPlaceRequest.parse(partSpec))).
+ * addPart(new PartDefinitionImpl(DefaultPlaceRequest.parse(partSpec)))
.
* @param partSpec An PlaceRequest ID with optional parameters, encoded as specified in
* {@link DefaultPlaceRequest#parse(CharSequence)}. Must not be null. The place ID must specify a
* WorkbenchActivity bean (either a screen or an editor).
@@ -183,7 +181,7 @@ public void appendChild(
/**
* Set the height of this panel in pixels using a primitive int to make this method exportable to JS.
- * @param width The width to set.
+ * @param height The height to set.
*/
default void setHeight(int height) {
setHeight(Integer.valueOf(height));
@@ -315,7 +313,7 @@ default int getMinWidthAsInt() {
void setContextDisplayMode(final ContextDisplayMode contextDisplayMode);
/**
- * Invokes {@link #toString()} but exported to JavaScript so it can be invoked from different scripts.
+ * Invokes toString() but exported to JavaScript so it can be invoked from different scripts.
*/
default String asString() {
return this.toString();
diff --git a/packages/dashbuilder/appformer/uberfire-api/src/main/java/org/uberfire/workbench/model/PartDefinition.java b/packages/dashbuilder/appformer/uberfire-api/src/main/java/org/uberfire/workbench/model/PartDefinition.java
index 6231e7d8ebf..edce9ca9cc2 100644
--- a/packages/dashbuilder/appformer/uberfire-api/src/main/java/org/uberfire/workbench/model/PartDefinition.java
+++ b/packages/dashbuilder/appformer/uberfire-api/src/main/java/org/uberfire/workbench/model/PartDefinition.java
@@ -49,7 +49,7 @@ public interface PartDefinition {
void setContextDisplayMode(final ContextDisplayMode contextDisplayMode);
/**
- * Invokes {@link #toString()} but exported to JavaScript so it can be invoked from different scripts.
+ * Invokes toString() but exported to JavaScript so it can be invoked from different scripts.
*/
default String asString() {
return this.toString();
diff --git a/packages/dashbuilder/appformer/uberfire-client-api/src/main/java/org/uberfire/client/annotations/WorkbenchPanel.java b/packages/dashbuilder/appformer/uberfire-client-api/src/main/java/org/uberfire/client/annotations/WorkbenchPanel.java
index 549715e94c4..06b424f0a10 100644
--- a/packages/dashbuilder/appformer/uberfire-client-api/src/main/java/org/uberfire/client/annotations/WorkbenchPanel.java
+++ b/packages/dashbuilder/appformer/uberfire-client-api/src/main/java/org/uberfire/client/annotations/WorkbenchPanel.java
@@ -27,7 +27,7 @@
/**
* Specifies an UberFire workbench panel within a templated perspective.
*
- *
- *
- *
- *
* WorkbechPopups can receive the following life-cycle calls: *
super.onStartup()
in methods that
* override this one.
*/
@Override
@@ -51,7 +51,7 @@ public void onStartup(PlaceRequest place) {
}
/**
- * Tracks open/closed lifecycle. Subclasses should always call super.onOpen() in methods that override this
+ * Tracks open/closed lifecycle. Subclasses should always call super.onOpen()
in methods that override this
* one.
*/
@Override
@@ -67,7 +67,7 @@ public void onOpen() {
}
/**
- * Tracks open/closed lifecycle. Subclasses should always call super.onClose() in methods that override
+ * Tracks open/closed lifecycle. Subclasses should always call super.onClose()
in methods that override
* this one.
*/
@Override
@@ -83,7 +83,7 @@ public void onClose() {
}
/**
- * Tracks start/shutdown lifecycle. Subclasses should always call super.onShutdown() in methods that
+ * Tracks start/shutdown lifecycle. Subclasses should always call super.onShutdown()
in methods that
* override this one.
*/
@Override
diff --git a/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client/src/main/java/org/uberfire/client/mvp/Activity.java b/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client/src/main/java/org/uberfire/client/mvp/Activity.java
index 4e202dcaa56..237b7a3d584 100644
--- a/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client/src/main/java/org/uberfire/client/mvp/Activity.java
+++ b/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client/src/main/java/org/uberfire/client/mvp/Activity.java
@@ -31,15 +31,15 @@
* see the subinterfaces for specific activity types that do get implemented.
* * Also, implementations of this interface and its subinterfaces are typically not written by hand; instead, they are - * generated from classes annotated with {@link WorkbenchScreen}, {@link WorkbenchEditor}, {@link WorkbenchPopup}, and + * generated from classes annotated with {@link WorkbenchScreen}, {@link WorkbenchPopup}, and * others by an UberFire annotation processor. - *
+ *
* Developers of UberFire applications will not typically come into direct contact with things that implement Activity * or its subinterfaces; instead, they will work with a {@link PlaceManager} to manipulate activities at arm's length. ** If you do need to get your hands on a particular {@code Activity} instance, do so using an {@link ActivityManager}. - *
- *
* An activity will never receive a call to {@link #onStartup(PlaceRequest)} when it is started or open, but it may be * restarted (perhaps with a different PlaceRequest) after a call to {@link #onShutdown()}. - *
+ *
* An activity will never receive a call to {@link #onOpen()} when it is uninitialized or open, but it may be reopened after a call * to {@link #onClose()}. * @see PlaceManager diff --git a/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client/src/main/java/org/uberfire/client/mvp/ActivityManager.java b/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client/src/main/java/org/uberfire/client/mvp/ActivityManager.java index c3990b2528a..df5cbd6a58d 100644 --- a/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client/src/main/java/org/uberfire/client/mvp/ActivityManager.java +++ b/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client/src/main/java/org/uberfire/client/mvp/ActivityManager.java @@ -53,7 +53,7 @@ public interface ActivityManager { * certain path, the returned set can contain any number of activities. * @param placeRequest the PlaceRequest to resolve activities for. Although null is permitted for convenience, it always * resolves to the empty set. - * @param secure flag indicating if calls to the {@link AuthorizationManager} service are required in order to + * @param secure flag indicating if calls to the AuthorizationManager service are required in order to * determine which activities are available. * @return an unmodifiable set of activities that can handle the given PlaceRequest. Never null, but can be empty. * To prevent memory leaks, pass Activity in the returned set to {@link #destroyActivity(Activity)} when you @@ -81,7 +81,7 @@ Set
* NOTE: presently, none of the built-in panel types display a part's title decoration.
* @param definition Defines all other aspects of the part to create. Must not be null.
* @param partType The new part type.
@@ -72,10 +70,10 @@ public WorkbenchPanelPresenter newRootPanel(PerspectiveActivity activity,
public CompassDropController newDropController(final WorkbenchPanelView> view);
/**
- * Destroys the entire graph of beans that were created and returned via a call to any of the newXXX()
+ * Destroys the entire graph of beans that were created and returned via a call to any of the newXXX()
* methods in this class. For example, passing a {@link WorkbenchPartPresenter} instance in will result in the
* destruction of that presenter, its view, and all other dependent beans injected into that graph of objects.
- * @param o a bean which was returned from one of the newXXX() methods in this class and which has not
+ * @param o a bean which was returned from one of the newXXX()
methods in this class and which has not
* been destroyed yet.
*/
public void destroy(final Object o);
diff --git a/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client/src/main/java/org/uberfire/client/workbench/PanelManager.java b/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client/src/main/java/org/uberfire/client/workbench/PanelManager.java
index e8d3fc74953..5f47b4084ab 100644
--- a/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client/src/main/java/org/uberfire/client/workbench/PanelManager.java
+++ b/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client/src/main/java/org/uberfire/client/workbench/PanelManager.java
@@ -58,7 +58,6 @@ public interface PanelManager {
* @param part The description of the part to add. Not null.
* @param panel definition of the panel to add the part to (must describe a panel that is already present in the
* layout). Not null.
- * @param menus The menus to display for the given part. Null means no menus.
* @param uiPart The part's title and physical view. Not null.
* @param contextId part of a removed framework feature (TODO: remove this?)
* @param minInitialWidth minimum pixel width of the part's activity, or null if there is no known minimum width. The target
@@ -108,7 +107,7 @@ PanelDefinition addWorkbenchPanel(final PanelDefinition targetPanel,
/**
* Creates an UberFire panel and installs its view in the given widget container.
*
- *
* Custom panels can be disposed like any other panel: by calling {@link #removeWorkbenchPanel(PanelDefinition)}. * Additionally, custom panels are monitored for DOM detachment. When a custom panel's view is removed from the DOM @@ -124,7 +123,7 @@ CustomPanelDefinition addCustomPanel(HasWidgets container, /** * Creates an UberFire panel and installs its view in the given html element container. *
- *
* Custom panels can be disposed like any other panel: by calling {@link #removeWorkbenchPanel(PanelDefinition)}. * Additionally, custom panels are monitored for DOM detachment. When a custom panel's view is removed from the DOM @@ -140,7 +139,7 @@ CustomPanelDefinition addCustomPanel(HTMLElement container, /** * Creates an UberFire panel and installs its view in the given html element container. *
- *
* Custom panels can be disposed like any other panel: by calling {@link #removeWorkbenchPanel(PanelDefinition)}.
* Additionally, custom panels are monitored for DOM detachment. When a custom panel's view is removed from the DOM
@@ -184,7 +183,7 @@ CustomPanelDefinition addCustomPanel(elemental2.dom.HTMLElement container,
void onPanelFocus(final PanelDefinition panel);
/**
- * Closes the given part. This is a convenience method for placeManager.closePlace(part.getPlace()).
+ * Closes the given part. This is a convenience method for placeManager.closePlace(part.getPlace())
.
* @param part the part to close (remove from the GUI). Must not be null.
*/
void closePart(final PartDefinition part);
diff --git a/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client/src/main/java/org/uberfire/client/workbench/WorkbenchLayout.java b/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client/src/main/java/org/uberfire/client/workbench/WorkbenchLayout.java
index 11abe20fe2c..a72c9776060 100644
--- a/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client/src/main/java/org/uberfire/client/workbench/WorkbenchLayout.java
+++ b/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client/src/main/java/org/uberfire/client/workbench/WorkbenchLayout.java
@@ -49,7 +49,6 @@ public interface WorkbenchLayout {
/**
* Will be invoked by the {@link org.uberfire.client.workbench.Workbench}
* when the discovery of header and footer elements is completed.
- * @see {@link #setFooterContents(java.util.List)}
*/
public void onBootstrap();
@@ -71,7 +70,6 @@ void resizeTo(int width,
/**
* Makes the given widget fill the entire space normally dedicated to the perspective container. Has no effect if
* the given widget is already maximized.
- *
onResize
events to the child widgets.
*/
public class ResizeFlowPanel extends FlowPanel implements RequiresResize,
ProvidesResize {
diff --git a/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client/src/main/java/org/uberfire/client/workbench/widgets/listbar/ResizeFocusPanel.java b/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client/src/main/java/org/uberfire/client/workbench/widgets/listbar/ResizeFocusPanel.java
index d65d27fb968..98c01c94514 100644
--- a/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client/src/main/java/org/uberfire/client/workbench/widgets/listbar/ResizeFocusPanel.java
+++ b/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client/src/main/java/org/uberfire/client/workbench/widgets/listbar/ResizeFocusPanel.java
@@ -29,7 +29,7 @@
/**
* A FocusPanel that can exist in a hierarchy of {@link LayoutPanel}s. Behaves exactly like FocusPanel, but also
- * propagates onResize events to the child widget.
+ * propagates >onResize
events to the child widget.
*/
public class ResizeFocusPanel extends FocusPanel implements RequiresResize,
ProvidesResize {
diff --git a/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client/src/main/java/org/uberfire/client/workbench/widgets/split/WorkbenchSplitLayoutPanel.java b/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client/src/main/java/org/uberfire/client/workbench/widgets/split/WorkbenchSplitLayoutPanel.java
index b15e83ac56a..880efcfcab0 100644
--- a/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client/src/main/java/org/uberfire/client/workbench/widgets/split/WorkbenchSplitLayoutPanel.java
+++ b/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client/src/main/java/org/uberfire/client/workbench/widgets/split/WorkbenchSplitLayoutPanel.java
@@ -42,12 +42,10 @@
/**
* A panel that adds user-positioned splitters between each of its child
* widgets.
- * * This is a fork of the standard SplitLayoutPanel with the following changes:- *
* This panel is used in the same way as {@link DockLayoutPanel}, except that * its children's sizes are always specified in {@link Unit#PX} units, and each @@ -58,7 +56,7 @@ * the HTML page in which it is run have an explicit <!DOCTYPE> * declaration. *
- *- *
newWorkbenchPanel( testPerspectiveDef.getRoot() ) )
.
*/
private WorkbenchPanelPresenter testPerspectiveRootPanelPresenter;
diff --git a/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client/src/test/java/org/uberfire/client/workbench/panels/impl/PlaceManagerTest.java b/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client/src/test/java/org/uberfire/client/workbench/panels/impl/PlaceManagerTest.java
index f0de32bdb08..588d92d9c3f 100644
--- a/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client/src/test/java/org/uberfire/client/workbench/panels/impl/PlaceManagerTest.java
+++ b/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-client/src/test/java/org/uberfire/client/workbench/panels/impl/PlaceManagerTest.java
@@ -994,7 +994,7 @@ private void verifyPlaceNotClosed(final PlaceRequest place,
/**
* Verifies that all the expected side effects of a screen or editor activity launch have happened.
* @param placeRequest The place request that was passed to some variant of PlaceManager.goTo().
- * @param activity A Mockito mock of the activity that was resolved for placeRequest.
+ * @param activity A Mockito mock of the activity that was resolved for placeRequest
.
*/
private void verifyActivityLaunchSideEffects(PlaceRequest placeRequest,
WorkbenchActivity activity,
@@ -1065,7 +1065,7 @@ private void verifyActivityLaunchSideEffects(PlaceRequest placeRequest,
/**
* Verifies that the "place change" side effects have not happened, and that the given activity is still current.
* @param expectedCurrentPlace The place request that placeManager should still consider "current."
- * @param activity A Mockito mock of the activity tied to expectedCurrentPlace.
+ * @param activity A Mockito mock of the activity tied to expectedCurrentPlace
.
*/
private void verifyNoActivityLaunchSideEffects(PlaceRequest expectedCurrentPlace,
WorkbenchScreenActivity activity) {
diff --git a/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-processors/src/main/java/org/uberfire/annotations/processors/GeneratorUtils.java b/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-processors/src/main/java/org/uberfire/annotations/processors/GeneratorUtils.java
index b09cf3d58a1..f1c887cf240 100644
--- a/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-processors/src/main/java/org/uberfire/annotations/processors/GeneratorUtils.java
+++ b/packages/dashbuilder/appformer/uberfire-workbench/uberfire-workbench-processors/src/main/java/org/uberfire/annotations/processors/GeneratorUtils.java
@@ -76,7 +76,6 @@ public class GeneratorUtils {
* Finds the {@code @OnStartup} method suitable for workbench classes that are not {@code @WorkbenchEditor}.
* The method must be public, non-static, have a return-type of void and either take zero parameters or one
* parameter of type {@code PlaceRequest}.
- *
* If no such method is found, returns null. If methods annotated with {@code @OnStartup} are found but they do not
* satisfy all the requirements, they are marked with errors explaining the problem.
*/
@@ -171,7 +170,6 @@ public static ExecutableElement getGetPreviewMethodName(TypeElement classElement
* Finds the {@code @OnStartup} method suitable for {@code @WorkbenchEditor} classes.
* The method must be public, non-static, have a return-type of void and either take one parameter
* of type {@code Path} or two parameters of type {@code (Path, PlaceRequest)}.
- *
* If no such method is found, returns null. If methods annotated with {@code @OnStartup} are found but they do not
* satisfy all the requirements, they are marked with errors explaining the problem.
*/
diff --git a/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/java/org/dashbuilder/dataset/client/DataSetClientServices.java b/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/java/org/dashbuilder/dataset/client/DataSetClientServices.java
index 23dd13352b8..76c9a35010c 100644
--- a/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/java/org/dashbuilder/dataset/client/DataSetClientServices.java
+++ b/packages/dashbuilder/dashbuilder-client/dashbuilder-dataset-client/src/main/java/org/dashbuilder/dataset/client/DataSetClientServices.java
@@ -79,7 +79,6 @@ void exportDataSetExcel(final DataSetLookup request,
* Creates a brand new data set definition for the provider type specified
*
* @param type The provider type
- * @return A data set definition instance
*/
void newDataSet(DataSetProviderType type,
RemoteCallbackAny derived class must implement: *
A renderer library must:
*When using this dataset provided mode the data set lookup operations set (if any): filter, group & sort will not be taking into account). + *
When using this dataset provided mode the data set lookup operations set (if any): filter, group and sort will not be taking into account).
*
* @return The DisplayerSettingsBuilder instance that is being used to configure a DisplayerSettings.
* @see org.dashbuilder.dataset.DataSet
@@ -127,7 +127,7 @@ public interface DisplayerSettingsBuilderif < 0
then periodic refresh is disabled.
* @param onStale Refresh when the data becomes stale.
*
* @return The DisplayerSettingsBuilder instance that is being used to configure a DisplayerSettings.
diff --git a/packages/dashbuilder/kie-soup-dataset/kie-soup-dataset-api/src/main/java/org/dashbuilder/dataprovider/DataSetProvider.java b/packages/dashbuilder/kie-soup-dataset/kie-soup-dataset-api/src/main/java/org/dashbuilder/dataprovider/DataSetProvider.java
index 4220399e9a7..f2b82119bd4 100644
--- a/packages/dashbuilder/kie-soup-dataset/kie-soup-dataset-api/src/main/java/org/dashbuilder/dataprovider/DataSetProvider.java
+++ b/packages/dashbuilder/kie-soup-dataset/kie-soup-dataset-api/src/main/java/org/dashbuilder/dataprovider/DataSetProvider.java
@@ -26,7 +26,7 @@
/**
* This service provider interface is designed to provide access to different data set storage implementations with
- * the main goal of providing a unified interface for the data set fetch & lookup operations.
+ * the main goal of providing a unified interface for the data set fetch and lookup operations.
*/
public interface DataSetProvider {
diff --git a/packages/dashbuilder/kie-soup-dataset/kie-soup-dataset-api/src/main/java/org/dashbuilder/dataset/DataColumn.java b/packages/dashbuilder/kie-soup-dataset/kie-soup-dataset-api/src/main/java/org/dashbuilder/dataset/DataColumn.java
index 7b7ab9e6337..6e4e7201d0e 100644
--- a/packages/dashbuilder/kie-soup-dataset/kie-soup-dataset-api/src/main/java/org/dashbuilder/dataset/DataColumn.java
+++ b/packages/dashbuilder/kie-soup-dataset/kie-soup-dataset-api/src/main/java/org/dashbuilder/dataset/DataColumn.java
@@ -100,7 +100,7 @@ public interface DataColumn {
DataColumn cloneEmpty();
/**
- * Clone the column entirely (definition & values).
+ * Clone the column entirely (definition and values).
*/
DataColumn cloneInstance();
}
diff --git a/packages/dashbuilder/kie-soup-dataset/kie-soup-dataset-api/src/main/java/org/dashbuilder/dataset/DataSetGenerator.java b/packages/dashbuilder/kie-soup-dataset/kie-soup-dataset-api/src/main/java/org/dashbuilder/dataset/DataSetGenerator.java
index cde9c9b3cb8..c05fdf5e677 100644
--- a/packages/dashbuilder/kie-soup-dataset/kie-soup-dataset-api/src/main/java/org/dashbuilder/dataset/DataSetGenerator.java
+++ b/packages/dashbuilder/kie-soup-dataset/kie-soup-dataset-api/src/main/java/org/dashbuilder/dataset/DataSetGenerator.java
@@ -29,7 +29,7 @@ public interface DataSetGenerator {
/**
* Build and get a DataSet instance.
*
- * @params A map of parameters to be passed through the generator.
+ * @param params A map of parameters to be passed through the generator.
*/
DataSet buildDataSet(Map
Some examples of time frame expressions are: + *
Some examples of time frame expressions are:
*Some examples of time instants are: + *
Some examples of time instants are:
*It's been designed with several goals in mind: + *
It's been designed with several goals in mind:
*The only intervals sizes supported are: QUARTER, MONTH, DAY_OF_WEEK, HOUR, MINUTE & SECOND.
+ *The only intervals sizes supported are: QUARTER, MONTH, DAY_OF_WEEK, HOUR, MINUTE and SECOND.
*/ public class IntervalBuilderFixedDate implements IntervalBuilder { diff --git a/packages/dashbuilder/kie-soup-dataset/kie-soup-dataset-shared/src/main/java/org/dashbuilder/dataset/engine/index/spi/DataSetIndexRegistry.java b/packages/dashbuilder/kie-soup-dataset/kie-soup-dataset-shared/src/main/java/org/dashbuilder/dataset/engine/index/spi/DataSetIndexRegistry.java index daed608d2c7..be17a298935 100644 --- a/packages/dashbuilder/kie-soup-dataset/kie-soup-dataset-shared/src/main/java/org/dashbuilder/dataset/engine/index/spi/DataSetIndexRegistry.java +++ b/packages/dashbuilder/kie-soup-dataset/kie-soup-dataset-shared/src/main/java/org/dashbuilder/dataset/engine/index/spi/DataSetIndexRegistry.java @@ -41,7 +41,7 @@ public interface DataSetIndexRegistry { /** * Removes the index for the specified data set. * @param uuid The data set unique identifier. - * @return The removed index or null if there was no mapping for uuid. + * @return The removed index ornull
if there was no mapping for uuid
.
*/
DataSetIndex remove(String uuid);
}
diff --git a/packages/dashbuilder/kie-soup-dataset/kie-soup-dataset-shared/src/main/java/org/dashbuilder/dataset/engine/sort/CollectionsDataSetSort.java b/packages/dashbuilder/kie-soup-dataset/kie-soup-dataset-shared/src/main/java/org/dashbuilder/dataset/engine/sort/CollectionsDataSetSort.java
index 78a7b22a640..58cee41d3d1 100644
--- a/packages/dashbuilder/kie-soup-dataset/kie-soup-dataset-shared/src/main/java/org/dashbuilder/dataset/engine/sort/CollectionsDataSetSort.java
+++ b/packages/dashbuilder/kie-soup-dataset/kie-soup-dataset-shared/src/main/java/org/dashbuilder/dataset/engine/sort/CollectionsDataSetSort.java
@@ -28,7 +28,7 @@
import org.dashbuilder.dataset.sort.ColumnSort;
/**
- * A basic sort algorithm takes relies on the default Collections.sort() implementation.
+ * A basic sort algorithm takes relies on the default Collections.sort()
implementation.
*/
public class CollectionsDataSetSort implements DataSetSortAlgorithm {
diff --git a/packages/stunner-editors/uberfire-api/src/main/java/org/uberfire/mvp/PlaceRequest.java b/packages/stunner-editors/uberfire-api/src/main/java/org/uberfire/mvp/PlaceRequest.java
index 2d9bae62c2c..4354953178b 100644
--- a/packages/stunner-editors/uberfire-api/src/main/java/org/uberfire/mvp/PlaceRequest.java
+++ b/packages/stunner-editors/uberfire-api/src/main/java/org/uberfire/mvp/PlaceRequest.java
@@ -70,7 +70,7 @@ default Path getPath() {
}
/**
- * Invokes {@link #toString()} but exported to JavaScript so it can be invoked from different scripts.
+ * Invokes toString() but exported to JavaScript so it can be invoked from different scripts.
*/
default String asString() {
return this.toString();