blob: 5a79ec43fdb8f2be4cc7c395bb47e249207db658 [file] [log] [blame]
package org.eclipse.epf.library.edit.uma;
import org.eclipse.epf.library.edit.uma.impl.LibraryScopeImpl;
import org.eclipse.epf.library.edit.uma.impl.ScopeImpl;
import org.eclipse.epf.uma.Process;
public class ScopeFactory {
private static ScopeFactory instance = new ScopeFactory();
public static ScopeFactory getInstance() {
return instance;
}
private ScopeFactory() {
}
public Scope newProcessScope() {
return new ScopeImpl();
}
public Scope newLibraryScope() {
return new LibraryScopeImpl();
}
}