blob: 493098f8bd9392b406b455c063ce570df8cd8b47 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009 Oakland Software and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Francis Upton IV, Oakland Software - initial API and implementation
*******************************************************************************/
package org.eclipse.ui;
/**
* Contains a set of {@link IWorkingSet}.
*
* Sets of working sets are used by viewers to contain all of the working
* sets being shown. Sets can also be nested.
*
* In classes that implement this, the {@link IWorkingSet#getElements()} returns
* all of the elements of each of the working sets in this set.
*
* Instances of {@link IWorkingSet} can be cast to IAggregateWorkingSet if
* {@link IWorkingSet#isAggregateWorkingSet()} is true.
*
* @noimplement This interface is not intended to be implemented by clients.
* @since 1.4
*/
public interface IAggregateWorkingSet extends IWorkingSet {
/**
* Returns the working sets contained in this aggregate working set.
*
* Clients can do what they wish with the returned array, as it
* will have no effect on the state of the this object.
*
* @return the working sets contained in this aggregate working set.
*/
public IWorkingSet[] getComponents();
}