Skip to main content
summaryrefslogtreecommitdiffstats
blob: d9dd39df191b273dcefbe273c585822dac25f0cc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/*
 * (c) Copyright IBM Corp. 2000, 2001.
 * All Rights Reserved.
 */
package org.eclipse.search.ui;

import org.eclipse.core.resources.IResource;

/**
 * <p>
 * This interface is for internal use only due to issue below. Once
 * the issues is solved there will be an official API.
 * </p>
 * <p>
 * [Issue: Working set must be provided by platform.]
 * </p>
 * 
 * @since 2.0
 */
public interface IWorkingSet {
	
	/**
	 * Returns the name of the working set.
	 * 
	 * @return	the name of the working set as <code>String</code>
	 */
	public String getName();
	
	/**
	 * Returns the resources that are contained in this working set.
	 * 
	 * @return	the working set's resources as array of <code>IResource</code>
	 */
	public IResource[] getResources();
}

Back to the top