8352624: Add missing {@code} to PassFailJFrame.Builder.splitUI

Reviewed-by: serb, honkar
This commit is contained in:
Alexey Ivanov 2025-03-27 12:05:17 +00:00
parent e2cd70aab6
commit 41f3eea9b2

View File

@ -1714,7 +1714,7 @@ public final class PassFailJFrame {
*
* @throws IllegalStateException if a {@code PanelCreator} is
* already set
* @throws IllegalArgumentException if {panelCreator} is {@code null}
* @throws IllegalArgumentException if {@code panelCreator} is {@code null}
*/
public Builder splitUI(PanelCreator panelCreator) {
return splitUIRight(panelCreator);
@ -1731,7 +1731,7 @@ public final class PassFailJFrame {
*
* @throws IllegalStateException if a {@code PanelCreator} is
* already set
* @throws IllegalArgumentException if {panelCreator} is {@code null}
* @throws IllegalArgumentException if {@code panelCreator} is {@code null}
*/
public Builder splitUIRight(PanelCreator panelCreator) {
return splitUI(panelCreator, JSplitPane.HORIZONTAL_SPLIT);
@ -1748,7 +1748,7 @@ public final class PassFailJFrame {
*
* @throws IllegalStateException if a {@code PanelCreator} is
* already set
* @throws IllegalArgumentException if {panelCreator} is {@code null}
* @throws IllegalArgumentException if {@code panelCreator} is {@code null}
*/
public Builder splitUIBottom(PanelCreator panelCreator) {
return splitUI(panelCreator, JSplitPane.VERTICAL_SPLIT);
@ -1764,7 +1764,7 @@ public final class PassFailJFrame {
*
* @throws IllegalStateException if a {@code PanelCreator} is
* already set
* @throws IllegalArgumentException if {panelCreator} is {@code null}
* @throws IllegalArgumentException if {@code panelCreator} is {@code null}
*/
private Builder splitUI(PanelCreator panelCreator,
int splitUIOrientation) {