blob: 55525083df84159184202ef2352433f3fc9fe354 [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();
}