Package org.objectweb.speedo.metadata

Examples of org.objectweb.speedo.metadata.SpeedoInheritance


        return p;
    }
    private Object treatInheritance(Node node, Object mo) throws SpeedoException {
        SpeedoClass sc = (SpeedoClass) mo;
        if (sc.inheritance == null) {
            sc.inheritance = new SpeedoInheritance();
        }
        Node n = node.getAttributes().getNamedItem("strategy");
        if (n == null) {
            sc.inheritance.strategy =
                SpeedoInheritance.parseStrategy(n.getNodeValue());
View Full Code Here


                    + SpeedoInheritance.strategy2str(sc.inheritance.strategy));
        }
        return sc.inheritance;
    }
    private Object treatDiscriminator(Node node, Object mo) throws SpeedoException {
        SpeedoInheritance si = (SpeedoInheritance) mo;
        si.discriminator = new SpeedoDiscriminator();
        Node n = node.getAttributes().getNamedItem("strategy");
        if (n == null) {
            si.discriminator.strategy =
                SpeedoDiscriminator.parseStrategy(n.getNodeValue());
View Full Code Here

TOP

Related Classes of org.objectweb.speedo.metadata.SpeedoInheritance

Copyright © 2018 www.massapicom. 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.