Skip to content

Commit 78a3721

Browse files
8271086: Block comments of form '/***' are treated as javadoc comments
Reviewed-by: arapte
1 parent 2cd5d1f commit 78a3721

File tree

185 files changed

+982
-982
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

185 files changed

+982
-982
lines changed

modules/javafx.controls/src/main/java/javafx/scene/control/Accordion.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public class Accordion extends Control {
7171
private boolean biasDirty = true;
7272
private Orientation bias;
7373

74-
/***************************************************************************
74+
/* *************************************************************************
7575
* *
7676
* Constructors *
7777
* *
@@ -104,7 +104,7 @@ public Accordion(TitledPane... titledPanes) {
104104
((StyleableProperty<Boolean>)(WritableValue<Boolean>)focusTraversableProperty()).applyStyle(null, Boolean.FALSE);
105105
}
106106

107-
/***************************************************************************
107+
/* *************************************************************************
108108
* *
109109
* Instance Variables *
110110
* *
@@ -130,7 +130,7 @@ public Accordion(TitledPane... titledPanes) {
130130
}
131131
};
132132

133-
/***************************************************************************
133+
/* *************************************************************************
134134
* *
135135
* Properties *
136136
* *
@@ -193,7 +193,7 @@ public Object getBean() {
193193
*/
194194
public final ObjectProperty<TitledPane> expandedPaneProperty() { return expandedPane; }
195195

196-
/***************************************************************************
196+
/* *************************************************************************
197197
* *
198198
* Public API *
199199
* *
@@ -239,7 +239,7 @@ public Object getBean() {
239239
return bias;
240240
}
241241

242-
/***************************************************************************
242+
/* *************************************************************************
243243
* *
244244
* Stylesheet Handling *
245245
* *

modules/javafx.controls/src/main/java/javafx/scene/control/Alert.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@
109109
*/
110110
public class Alert extends Dialog<ButtonType> {
111111

112-
/**************************************************************************
112+
/* ************************************************************************
113113
*
114114
* Static enums
115115
*
@@ -166,7 +166,7 @@ public static enum AlertType {
166166

167167

168168

169-
/**************************************************************************
169+
/* ************************************************************************
170170
*
171171
* Fields
172172
*
@@ -193,7 +193,7 @@ public static enum AlertType {
193193

194194

195195

196-
/**************************************************************************
196+
/* ************************************************************************
197197
*
198198
* Constructors
199199
*
@@ -269,7 +269,7 @@ public Alert(@NamedArg("alertType") AlertType alertType,
269269

270270

271271

272-
/**************************************************************************
272+
/* ************************************************************************
273273
*
274274
* Properties
275275
*
@@ -383,7 +383,7 @@ public final ObservableList<ButtonType> getButtonTypes() {
383383

384384

385385

386-
/**************************************************************************
386+
/* ************************************************************************
387387
*
388388
* Private Implementation
389389
*

modules/javafx.controls/src/main/java/javafx/scene/control/Button.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
*/
7878
public class Button extends ButtonBase {
7979

80-
/***************************************************************************
80+
/* *************************************************************************
8181
* *
8282
* Constructors *
8383
* *
@@ -117,7 +117,7 @@ private void initialize() {
117117
setMnemonicParsing(true); // enable mnemonic auto-parsing by default
118118
}
119119

120-
/***************************************************************************
120+
/* *************************************************************************
121121
* *
122122
* Properties *
123123
* *
@@ -191,7 +191,7 @@ public String getName() {
191191
}
192192

193193

194-
/***************************************************************************
194+
/* *************************************************************************
195195
* *
196196
* Methods *
197197
* *
@@ -210,7 +210,7 @@ public String getName() {
210210
}
211211

212212

213-
/***************************************************************************
213+
/* *************************************************************************
214214
* *
215215
* Stylesheet Handling *
216216
* *

modules/javafx.controls/src/main/java/javafx/scene/control/ButtonBar.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ public class ButtonBar extends Control {
145145
// TODO add support for BUTTON_ORDER_NONE
146146
// TODO test and document what happens with unexpected button order strings
147147

148-
/**************************************************************************
148+
/* ************************************************************************
149149
*
150150
* Static fields
151151
*
@@ -176,7 +176,7 @@ public class ButtonBar extends Control {
176176

177177

178178

179-
/**************************************************************************
179+
/* ************************************************************************
180180
*
181181
* Static enumerations
182182
*
@@ -432,7 +432,7 @@ public static boolean isButtonUniformSize(Node button) {
432432

433433

434434

435-
/**************************************************************************
435+
/* ************************************************************************
436436
*
437437
* Private fields
438438
*
@@ -442,7 +442,7 @@ public static boolean isButtonUniformSize(Node button) {
442442

443443

444444

445-
/**************************************************************************
445+
/* ************************************************************************
446446
*
447447
* Constructors
448448
*
@@ -490,7 +490,7 @@ public ButtonBar(final String buttonOrder) {
490490

491491

492492

493-
/**************************************************************************
493+
/* ************************************************************************
494494
*
495495
* Public API
496496
*
@@ -519,7 +519,7 @@ public final ObservableList<Node> getButtons() {
519519

520520

521521

522-
/**************************************************************************
522+
/* ************************************************************************
523523
*
524524
* Properties
525525
*
@@ -586,7 +586,7 @@ public final double getButtonMinWidth() {
586586

587587

588588

589-
/**************************************************************************
589+
/* ************************************************************************
590590
*
591591
* Implementation
592592
*
@@ -606,7 +606,7 @@ public final double getButtonMinWidth() {
606606

607607

608608

609-
/**************************************************************************
609+
/* ************************************************************************
610610
*
611611
* Support classes / enums
612612
*

modules/javafx.controls/src/main/java/javafx/scene/control/ButtonBase.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949

5050
public abstract class ButtonBase extends Labeled {
5151

52-
/***************************************************************************
52+
/* *************************************************************************
5353
* *
5454
* Constructors *
5555
* *
@@ -78,7 +78,7 @@ public ButtonBase(String text, Node graphic) {
7878
}
7979

8080

81-
/***************************************************************************
81+
/* *************************************************************************
8282
* *
8383
* Properties *
8484
* *
@@ -140,7 +140,7 @@ public String getName() {
140140
};
141141

142142

143-
/***************************************************************************
143+
/* *************************************************************************
144144
* *
145145
* Methods *
146146
* *
@@ -182,7 +182,7 @@ public void disarm() {
182182
public abstract void fire();
183183

184184

185-
/***************************************************************************
185+
/* *************************************************************************
186186
* *
187187
* Stylesheet Handling *
188188
* *
@@ -191,7 +191,7 @@ public void disarm() {
191191
private static final PseudoClass ARMED_PSEUDOCLASS_STATE = PseudoClass.getPseudoClass("armed");
192192

193193

194-
/***************************************************************************
194+
/* *************************************************************************
195195
* *
196196
* Accessibility handling *
197197
* *

modules/javafx.controls/src/main/java/javafx/scene/control/Cell.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@
336336
*/
337337
public class Cell<T> extends Labeled {
338338

339-
/***************************************************************************
339+
/* *************************************************************************
340340
* *
341341
* Constructors *
342342
* *
@@ -376,7 +376,7 @@ public Cell() {
376376

377377

378378

379-
/***************************************************************************
379+
/* *************************************************************************
380380
* *
381381
* Properties *
382382
* *
@@ -568,7 +568,7 @@ public final BooleanProperty editableProperty() {
568568

569569

570570

571-
/***************************************************************************
571+
/* *************************************************************************
572572
* *
573573
* Public API *
574574
* *
@@ -638,7 +638,7 @@ public void commitEdit(T newValue) {
638638

639639

640640

641-
/***************************************************************************
641+
/* *************************************************************************
642642
* *
643643
* Expert API *
644644
* *
@@ -741,7 +741,7 @@ protected boolean isItemChanged(T oldItem, T newItem) {
741741

742742

743743

744-
/***************************************************************************
744+
/* *************************************************************************
745745
* *
746746
* Private Implementation *
747747
* *
@@ -757,7 +757,7 @@ private final void markCellDirty() {
757757
}
758758

759759

760-
/***************************************************************************
760+
/* *************************************************************************
761761
* *
762762
* Stylesheet Handling *
763763
* *

modules/javafx.controls/src/main/java/javafx/scene/control/CheckBox.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
*/
7777
public class CheckBox extends ButtonBase {
7878

79-
/***************************************************************************
79+
/* *************************************************************************
8080
* *
8181
* Constructors *
8282
* *
@@ -109,7 +109,7 @@ private void initialize() {
109109
pseudoClassStateChanged(PSEUDO_CLASS_DETERMINATE, true);
110110
}
111111

112-
/***************************************************************************
112+
/* *************************************************************************
113113
* *
114114
* Properties *
115115
* *
@@ -208,7 +208,7 @@ public final BooleanProperty allowIndeterminateProperty() {
208208
return allowIndeterminate;
209209
}
210210

211-
/***************************************************************************
211+
/* *************************************************************************
212212
* *
213213
* Methods *
214214
* *
@@ -247,7 +247,7 @@ public final BooleanProperty allowIndeterminateProperty() {
247247
}
248248

249249

250-
/***************************************************************************
250+
/* *************************************************************************
251251
* *
252252
* Stylesheet Handling *
253253
* *
@@ -262,7 +262,7 @@ public final BooleanProperty allowIndeterminateProperty() {
262262
PseudoClass.getPseudoClass("selected");
263263

264264

265-
/***************************************************************************
265+
/* *************************************************************************
266266
* *
267267
* Accessibility handling *
268268
* *

modules/javafx.controls/src/main/java/javafx/scene/control/CheckBoxTreeItem.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ public static <T> EventType<TreeModificationEvent<T>> checkBoxSelectionChangedEv
111111
private static final EventType<? extends Event> CHECK_BOX_SELECTION_CHANGED_EVENT
112112
= new EventType<Event>(TreeModificationEvent.ANY, "checkBoxSelectionChangedEvent");
113113

114-
/***************************************************************************
114+
/* *************************************************************************
115115
* *
116116
* Constructors *
117117
* *
@@ -184,7 +184,7 @@ public CheckBoxTreeItem(T value, Node graphic, boolean selected, boolean indepen
184184

185185

186186

187-
/***************************************************************************
187+
/* *************************************************************************
188188
* *
189189
* Callbacks *
190190
* *
@@ -194,7 +194,7 @@ public CheckBoxTreeItem(T value, Node graphic, boolean selected, boolean indepen
194194
};
195195

196196

197-
/***************************************************************************
197+
/* *************************************************************************
198198
* *
199199
* Properties *
200200
* *
@@ -274,7 +274,7 @@ public CheckBoxTreeItem(T value, Node graphic, boolean selected, boolean indepen
274274

275275

276276

277-
/***************************************************************************
277+
/* *************************************************************************
278278
* *
279279
* Private Implementation *
280280
* *

0 commit comments

Comments
 (0)