1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-04 14:55:41 +02:00

[cleanup] fix Javadoc warnings

This commit is contained in:
Martin Oberhuber 2008-02-12 17:54:41 +00:00
parent 6392f63296
commit 7cf4b558e5

View file

@ -26,12 +26,14 @@ import org.eclipse.core.runtime.IAdaptable;
public interface ISystemViewInputProvider extends IAdaptable { public interface ISystemViewInputProvider extends IAdaptable {
/** /**
* @return the children objects to constitute the root elements in the system view tree * Return the child objects to constitute the root elements in the system view tree.
* @return Array of root root elements for the system view tree
*/ */
public Object[] getSystemViewRoots(); public Object[] getSystemViewRoots();
/** /**
* @return true if {@link #getSystemViewRoots()} will return a non-empty list * Test if {@link #getSystemViewRoots()} will return a non-empty list
* @return <code>true</code> if root elements are available, or <code>false</code> otherwise.
*/ */
public boolean hasSystemViewRoots(); public boolean hasSystemViewRoots();