Package com.volantis.mcs.xml.schema.model

Examples of com.volantis.mcs.xml.schema.model.CompositeModel.exclude()


            b.setContentModel(bounded(choice().add(a).add(b).add(PCDATA)));

            // a can contain any amount of b or PCDATA but excludes itself from
            // all nested elements.
            CompositeModel a_content = choice().add(b).add(PCDATA);
            a_content.exclude(choice().add(a));
            a.setContentModel(bounded(a_content));
        }
    }

    public void testExclusionOk()
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.