blob: 41d88e7f27ef9b732046bc78fade7dc44d8fd3fa [file] [log] [blame]
package org.eclipse.epf.uma.util;
import java.util.ArrayList;
import java.util.List;
import org.eclipse.epf.uma.ecore.IUserDefinedTypeMeta;
public interface ModifiedTypeMeta extends MetaElement {
public List<ExtendedReference> getReferences();
public List<ExtendedAttribute> getRtes();
public List<ExtendedSection> getSections();
public List<ExtendedSection> getReferenceSections();
public List<ExtendedSection> getRteSections();
public boolean processLink(ModifiedTypeMeta linkedMeta);
}