mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-03 07:05:24 +02:00
[javadoc] added javadoc for NO_CHILDREN, made explicitly public.
This commit is contained in:
parent
65c2353b40
commit
27361fe91c
1 changed files with 6 additions and 1 deletions
|
@ -27,7 +27,12 @@ package org.eclipse.rse.core.model;
|
|||
*/
|
||||
public interface IRSEPersistableContainer {
|
||||
|
||||
static final IRSEPersistableContainer[] NO_CHILDREN = new IRSEPersistableContainer[0];
|
||||
/**
|
||||
* A constant indicating the presence of no children for a given container.
|
||||
* This can be used when implementing {@link #getPersistableChildren()}.
|
||||
* The value is an empty array.
|
||||
*/
|
||||
public static final IRSEPersistableContainer[] NO_CHILDREN = new IRSEPersistableContainer[0];
|
||||
|
||||
/**
|
||||
* Request a persistence manager to persist this object.
|
||||
|
|
Loading…
Add table
Reference in a new issue