Skip to content

Commit

Permalink
Fixes for javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
cuioss committed Aug 28, 2024
1 parent 59a2da9 commit d802262
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@
* <em>This workaround is only necessary for cases, where the rendering is done by the concrete implementation (delegation).</em>
* The Solution:
* <ul>
* <li>Use the standard-methods like {@link TitleProvider#setTitleKey(String)} as usual</li>
* <li>The {@link jakarta.faces.render.Renderer must call {@link TitleProvider#resolveAndStoreTitle()} </li>
* <li>Use the standard-methods like {@link TitleProvider#setTitleKey(String)} as usual</li>
* <li>The {@link jakarta.faces.render.Renderer must call {@link TitleProvider#resolveAndStoreTitle()}</li>
* <li>Finally the {@link jakarta.faces.render.Renderer} must call {@link #writeTitleToParent()}</li>
* </ul>
* </ul>
* See {@link BaseCuiCommandButton} for usage
*/
public interface MyFacesDelegateTitleAdapter {

/**
* Writes the current style-class tot the parent
* Writes the current style-class to the parent
*/
void writeTitleToParent();
}
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
* Space-separated list of CSS style class(es) to be applied additionally when
* this element is rendered.
* </p>
* <p>
*
* @author Oliver Wolff
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,11 @@
import de.cuioss.jsf.api.components.css.StyleClassBuilder;
import de.cuioss.jsf.api.components.css.impl.StyleClassBuilderImpl;
import de.cuioss.jsf.api.components.util.CuiState;
import lombok.NonNull;

import jakarta.faces.component.StateHelper;
import lombok.NonNull;

/**
* Default implementation for {@link ComponentStyleClassProvider}
* <p>
*
* @author Oliver Wolff
*/
Expand Down

0 comments on commit d802262

Please sign in to comment.