blob: 7927363be3f5fe01c5dd3bf104796510e755d646 [file] [log] [blame]
package org.eclipse.epf.library.edit.util;
import org.eclipse.emf.ecore.EReference;
import org.eclipse.epf.library.edit.realization.IRealizationManager;
import org.eclipse.epf.uma.Descriptor;
import org.eclipse.epf.uma.MethodConfiguration;
import org.eclipse.epf.uma.MethodElement;
import org.eclipse.epf.uma.MethodLibrary;
public interface ILibraryEditUtilProvider {
boolean isSynFree();
MethodElement getMethodElement(String guid);
boolean isDynamicAndExclude(Object obj, Descriptor desc, EReference ref,
MethodConfiguration config);
boolean isDynamic(Object obj, Descriptor desc, EReference ref);
boolean isGuidanceDynamic(Object obj, Descriptor desc,
MethodConfiguration config);
MethodLibrary getCurrentMethodLibrary();
String getPresentationName(MethodElement element,
MethodConfiguration config);
IRealizationManager getRealizationManager(MethodConfiguration config);
MethodElement getCalculatedElement(MethodElement element, MethodConfiguration config);
boolean inConfig(MethodElement element, MethodConfiguration config);
}