Package ptolemy.vergil.actor

Examples of ptolemy.vergil.actor.DocEffigy$Factory


            effigy = _effigy;
        }

        if (effigy == null) {
            try {
                effigy = new DocEffigy(context, "DocEffigy");
            } catch (KernelException exception) {
                throw new InternalErrorException(exception);
            }
        }
        if (!(effigy instanceof DocEffigy)) {
View Full Code Here


            if (!(parent instanceof TableauFrame)) {
                MessageHandler.error("Cannot display documentation!");
            }
            Effigy effigy = ((TableauFrame) parent).getEffigy();
            try {
                DocEffigy newEffigy = new DocEffigy((CompositeEntity) effigy
                        .getContainer(), effigy.getContainer().uniqueName(
                        "parentClass"));
                newEffigy.setDocAttribute(doc);
                DocTableau tableau = new DocTableau(newEffigy, "docTableau");
                tableau.show();
            } catch (KernelException e) {
                MessageHandler.error("Error opening documentation", e);
            }
View Full Code Here

TOP

Related Classes of ptolemy.vergil.actor.DocEffigy$Factory

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.