Search in sources :

Example 1 with DRefPattern

use of com.sun.tools.rngom.digested.DRefPattern in project jaxb-ri by eclipse-ee4j.

the class RELAXNGCompiler method promoteElementDefsToClasses.

private void promoteElementDefsToClasses() {
    // look for elements among named patterns
    for (DDefine def : defs) {
        DPattern p = def.getPattern();
        if (p instanceof DElementPattern) {
            DElementPattern ep = (DElementPattern) p;
            mapToClass(ep);
        }
    }
    // also look for root elements
    grammar.accept(new DPatternWalker() {

        @Override
        public Void onRef(DRefPattern p) {
            // stop recursion
            return null;
        }

        @Override
        public Void onElement(DElementPattern p) {
            mapToClass(p);
            return null;
        }
    });
}
Also used : DPatternWalker(com.sun.tools.rngom.digested.DPatternWalker) DPattern(com.sun.tools.rngom.digested.DPattern) DDefine(com.sun.tools.rngom.digested.DDefine) DElementPattern(com.sun.tools.rngom.digested.DElementPattern) DRefPattern(com.sun.tools.rngom.digested.DRefPattern)

Aggregations

DDefine (com.sun.tools.rngom.digested.DDefine)1 DElementPattern (com.sun.tools.rngom.digested.DElementPattern)1 DPattern (com.sun.tools.rngom.digested.DPattern)1 DPatternWalker (com.sun.tools.rngom.digested.DPatternWalker)1 DRefPattern (com.sun.tools.rngom.digested.DRefPattern)1