blob: 55a8bd50a572b1fd2de9f43c5c6475b8b5a0c7c8 [file] [log] [blame]
package org.eclipse.epf.library.edit.uma;
import java.util.Set;
import org.eclipse.epf.uma.MethodConfiguration;
import org.eclipse.epf.uma.MethodElement;
/**
* @author Weiping Lu
* @since 1.5.1
*/
public interface Scope extends MethodConfiguration {
boolean inScope(MethodElement element);
void addToScope(MethodElement element);
void clearAll();
boolean debug = true;
}