Package org.analyse.merise.mcd.composant

Examples of org.analyse.merise.mcd.composant.MCDAssociation


                    .get("x")).intValue(), new Integer((String) hashtable
                    .get("y")).intValue()));
            mcd.addObjet(lastObj);

        } else if ("ASSOCIATION".equalsIgnoreCase(name)) {
            lastObj = new MCDAssociation(mcd, (String) hashtable.get("nom"),
                    (new Integer((String) hashtable.get("x"))).intValue(),
                    (new Integer((String) hashtable.get("y"))).intValue());
            lastObj.setPosition(new Point(new Integer((String) hashtable
                    .get("x")).intValue(), new Integer((String) hashtable
                    .get("y")).intValue()));
View Full Code Here

TOP

Related Classes of org.analyse.merise.mcd.composant.MCDAssociation

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.