1 /*******************************************************************************
2 * Copyright (c) 2000, 2003 IBM Corporation and others.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Common Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/cpl-v10.html
9 * IBM Corporation - initial API and implementation
10 *******************************************************************************/
11 package net.sourceforge.phpdt.ui;
14 * Interface used for Java element content providers to indicate that
15 * the content provider can return working copy elements for members
16 * below compilation units.
19 * This interface is not intended to be implemented by clients.
22 * @see net.sourceforge.phpdt.ui.StandardJavaElementContentProvider
23 * @see net.sourceforge.phpdt.core.IWorkingCopy
27 public interface IWorkingCopyProvider {
30 * Returns <code>true</code> if the content provider returns working
31 * copy elements; otherwise <code>false</code> is returned.
33 * @return whether working copy elements are provided.
35 public boolean providesWorkingCopies();