Package org.analyse.merise.mcd.composant

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


        if (etape == DICTIONNAIRE)
            return;

        if ("ENTITE".equalsIgnoreCase(name)) {
            lastObj = new MCDEntite(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.MCDEntite

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.