Skip to content

Commit 080e952

Browse files
committed
Update javadoc
1 parent abe44ec commit 080e952

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

mvvm4fx-core/src/main/java/com/techsenger/mvvm4fx/core/ParentComponent.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,9 @@
2525
public interface ParentComponent<T extends ParentView<?>> extends Component<T> {
2626

2727
/**
28-
* Returns an unmodifiable list of child components. The list is manually maintained to preserve hierarchical
29-
* relationships between components when required.
28+
* Returns an unmodifiable list of child components.
3029
*
31-
* @return an observable list of child components (never {@code null})
30+
* @return an unmodifiable list of child components (never {@code null})
3231
*/
3332
ObservableList<ChildComponent<?>> getChildren();
3433

mvvm4fx-core/src/main/java/com/techsenger/mvvm4fx/core/ParentMediator.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,7 @@
2525
public interface ParentMediator extends ComponentMediator {
2626

2727
/**
28-
* Returns an unmodifiable observable list of child ViewModels. To modify the list of children, access the mutable
29-
* list through {@link ParentView#getChildren()}. The returned list is guaranteed to be non-null but cannot be
30-
* modified directly.
28+
* Returns an unmodifiable observable list of child ViewModels.
3129
*
3230
* @return a non-null, unmodifiable observable list of child ViewModels
3331
*/

0 commit comments

Comments
 (0)