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) { *
  • the first letter of each component of the package name *
  • a dot *
  • the class name. If the class is an inner class, the name is of the form Outer$Inner - *
      - *

      + *

    * For classes in the default package, items 1 and 2 are omitted. * @param c the class whose name to abbreviate. Can be null, but will result in a null return value. * @return the abbreviated FQCN as described, or null if the input is null. diff --git a/packages/dashbuilder/appformer/uberfire-api/src/main/java/org/uberfire/mvp/PlaceRequest.java b/packages/dashbuilder/appformer/uberfire-api/src/main/java/org/uberfire/mvp/PlaceRequest.java index da33758f8ed..62335a09f86 100644 --- a/packages/dashbuilder/appformer/uberfire-api/src/main/java/org/uberfire/mvp/PlaceRequest.java +++ b/packages/dashbuilder/appformer/uberfire-api/src/main/java/org/uberfire/mvp/PlaceRequest.java @@ -65,7 +65,7 @@ PlaceRequest addParameter(final String name, void setUpdateLocationBar(boolean updateLocationBar); /** - * 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/CustomPanelDefinition.java b/packages/dashbuilder/appformer/uberfire-api/src/main/java/org/uberfire/workbench/model/CustomPanelDefinition.java index 863ea0e391e..20e8d7aa91b 100644 --- a/packages/dashbuilder/appformer/uberfire-api/src/main/java/org/uberfire/workbench/model/CustomPanelDefinition.java +++ b/packages/dashbuilder/appformer/uberfire-api/src/main/java/org/uberfire/workbench/model/CustomPanelDefinition.java @@ -25,12 +25,11 @@ import jsinterop.annotations.JsIgnore; import jsinterop.annotations.JsType; import org.jboss.errai.common.client.dom.HTMLElement; -import org.uberfire.mvp.PlaceRequest; /** * A custom {@link PanelDefinition} that is associated with a HasWidgets - * or HTMLElement container. See {@link PlaceManager#goTo(PlaceRequest, HasWidgets)} - * and {@link PlaceManager#goTo(PlaceRequest, HTMLElement)} + * or HTMLElement container. See PlaceManager#goTo(PlaceRequest, HasWidgets) + * and PlaceManager#goTo(PlaceRequest, HTMLElement) */ @JsType public interface CustomPanelDefinition extends PanelDefinition { diff --git a/packages/dashbuilder/appformer/uberfire-api/src/main/java/org/uberfire/workbench/model/PanelDefinition.java b/packages/dashbuilder/appformer/uberfire-api/src/main/java/org/uberfire/workbench/model/PanelDefinition.java index b79959bb53d..07bf8d77396 100644 --- a/packages/dashbuilder/appformer/uberfire-api/src/main/java/org/uberfire/workbench/model/PanelDefinition.java +++ b/packages/dashbuilder/appformer/uberfire-api/src/main/java/org/uberfire/workbench/model/PanelDefinition.java @@ -61,7 +61,6 @@ public interface PanelDefinition { * Specifies content that should be put in this panel's main display area when it is materialized. The content to * add is specified by a PartDefinition, at the core of which is a {@link PlaceRequest} that identifies a * WorkbenchActivity (either a screen or an editor). - *

    * 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. *

    - *

    Prerequisites

    + * Prerequisites * This annotation can only be used within a class annotated with {@link WorkbenchPerspective}, and it must target a * field that implements the GWT HasWidgets interface. Further, the class this annotation is used in must not have a * method annotated with {@link Perspective}. See {@link WorkbenchPerspective} for details. diff --git a/packages/dashbuilder/appformer/uberfire-client-api/src/main/java/org/uberfire/client/annotations/WorkbenchPerspective.java b/packages/dashbuilder/appformer/uberfire-client-api/src/main/java/org/uberfire/client/annotations/WorkbenchPerspective.java index f5a4efe7229..3b1560f53e0 100644 --- a/packages/dashbuilder/appformer/uberfire-client-api/src/main/java/org/uberfire/client/annotations/WorkbenchPerspective.java +++ b/packages/dashbuilder/appformer/uberfire-client-api/src/main/java/org/uberfire/client/annotations/WorkbenchPerspective.java @@ -35,16 +35,16 @@ * programmatically build a {@link PerspectiveDefinition} object, or declare panel structure and content using Errai UI * templates. Note that you cannot mix the two approaches. *

    - *

    Programmatic Perspective Definition

    + * Programmatic Perspective Definition * To define the perspective layout programmatically, create a zero-argument method annotated with {@code @Perspective} * that returns a {@link PerspectiveDefinition}. *

    - *

    Templated Perspective Definition

    + * Templated Perspective Definition * To declare perspective layout using templates, make the class an Errai UI templated component, and then add the * {@link WorkbenchPanel} annotation to one or more of its {@code @DataField} widgets. This designates them as panel * containers and allows you to specify which parts should be added to them when the perspective launches. *

    - *

    Perspective Lifecycle

    + * Perspective Lifecycle * WorkbenchPerspectives receive the standard set of lifecycle calls for a Workbench component: *