1
0
Fork 0
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:
David Dykstal 2007-05-25 14:18:24 +00:00
parent 65c2353b40
commit 27361fe91c

View file

@ -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.