Package org.mevenide.idea.project.goals

Examples of org.mevenide.idea.project.goals.Goal


                label.setText(plugin.getName() + " (" + plugin.getVersion() + ")");
                label.setIcon(Icons.PLUGIN);
            }
            else if (pValue instanceof GoalNode) {
                final GoalNode node = (GoalNode) pValue;
                final Goal goal = node.getUserObject();
                label.setText(goal.getName());
                label.setIcon(Icons.GOAL);
            }
        }

        return c;
View Full Code Here

TOP

Related Classes of org.mevenide.idea.project.goals.Goal

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.