Package com.brosinski.eclipse.regex.view.actions

Examples of com.brosinski.eclipse.regex.view.actions.AboutAction


        nextMatchAction = new NextMatchAction(this);
        prevMatchAction = new PrevMatchAction(this);
        clearAction = new ClearAction(this);
       
       
        aboutAction = new AboutAction(this);
   
        getViewSite().getActionBars().getToolBarManager().add(clearAction);
        getViewSite().getActionBars().getToolBarManager().add(new Separator());
        getViewSite().getActionBars().getToolBarManager().add(prevMatchAction);
        getViewSite().getActionBars().getToolBarManager().add(nextMatchAction);
View Full Code Here

TOP

Related Classes of com.brosinski.eclipse.regex.view.actions.AboutAction

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.