blob: 026d863429904589b98a1960b33bed54c98fdeb7 [file] [log] [blame]
package org.eclipse.epf.uma.util;
import java.util.List;
public interface ExtendedSection extends MetaElement {
public String getType();
public List<ExtendedReference> getReferences();
public List<ExtendedAttribute> getRtes();
public List<ExtendedTable> getTables();
}