Package com.aesthete.csmart.schema.frames

Examples of com.aesthete.csmart.schema.frames.FramesDocument


        initFrameConfigMap(framesXmlFile);
    }

    private static void initFrameConfigMap(String framesXmlFile) throws SwingObjectsException {
        try{
            FramesDocument framesDoc=FramesDocument.Factory.parse(new File(framesXmlFile));
            Frames frames=framesDoc.getFrames();
            Frame[] frameArray=frames.getFrameArray();
            for (int i = 0; i < frameArray.length; i++) {
                Frame frame = frameArray[i];
                frameConfigMap.put(frame.getId(),frame);
            }
View Full Code Here

TOP

Related Classes of com.aesthete.csmart.schema.frames.FramesDocument

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.