cdc.applic.dictionaries.impl.SectionStructure Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cdc-applic-dictionaries-impl Show documentation
Show all versions of cdc-applic-dictionaries-impl Show documentation
Applicabilities Dictionaries Implementation.
The newest version!
package cdc.applic.dictionaries.impl;
import java.io.PrintStream;
import java.util.List;
import cdc.applic.dictionaries.DictionaryStructure;
import cdc.util.debug.Verbosity;
public interface SectionStructure extends DictionaryStructure {
public RepositoryImpl getRepository();
public PolicyImpl.Builder policy();
@Override
public List getParents();
@Override
public List getSortedAncestors(boolean self);
@Override
public List getSortedDescendants(boolean self);
public void printLocalStructure(PrintStream out,
int level,
Verbosity verbosity);
public void printChildrenPolicies(PrintStream out,
int level,
Verbosity verbosity);
}