Package com.intellij.openapi.vcs.ui

Examples of com.intellij.openapi.vcs.ui.SearchFieldAction


    private String value = "";

    @Override
    public AnAction getAction(final Project project) {
        return new SearchFieldAction("Filter: ") {
            @Override
            public void actionPerformed(AnActionEvent event) {
                String newValue = getText().trim();
                if (isNewValue(newValue)) {
                    value = newValue;
View Full Code Here

TOP

Related Classes of com.intellij.openapi.vcs.ui.SearchFieldAction

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.