Package org.erlide.wrangler.refactoring.codeinspection.view

Examples of org.erlide.wrangler.refactoring.codeinspection.view.GraphImageView$SaveImageAction


     * @param dotFile
     *            .dot file which is displayed
     */
    static public void showDotImage(final Image img, final String title,
            final String secondaryID, final File dotFile) {
        final GraphImageView view = (GraphImageView) showView(GRAPH_VIEW, secondaryID);
        view.setViewTitle(title);
        view.setImage(img);
        view.setDotFile(dotFile);
    }
View Full Code Here

TOP

Related Classes of org.erlide.wrangler.refactoring.codeinspection.view.GraphImageView$SaveImageAction

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.