All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cdc.applic.dictionaries.impl.SectionStructure Maven / Gradle / Ivy

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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy