Package com.intellij.openapi.project

Examples of com.intellij.openapi.project.DumbAwareAction


        }

        @Override
        protected void createActions(Consumer<AnAction> actionConsumer) {
            for (final Status status : statuses) {
                actionConsumer.consume(new DumbAwareAction(status.label) {
                    @Override
                    public void actionPerformed(AnActionEvent e) {
                        value = Optional.of(status);
                        myLabel.setText(status.label);
                        setChanged();
View Full Code Here

TOP

Related Classes of com.intellij.openapi.project.DumbAwareAction

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.