Package org.eclipse.ui.dialogs

Examples of org.eclipse.ui.dialogs.FilteredItemsSelectionDialog$ToggleStatusLineAction


        final IService[] services = toService((Object[]) target);

        display.asyncExec(new Runnable(){

            public void run() {
                FilteredItemsSelectionDialog dialog;
                try {
                    dialog = new CharsetSelectionDialog(display.getActiveShell(), false,
                            getCharset(services[0]).name());
                    dialog.open();
                    final Charset newCharset = (Charset) dialog.getFirstResult();

                    if( newCharset!=null){
                        setNewCharset(services, newCharset);
                    }
                } catch (IOException e) {
View Full Code Here

TOP

Related Classes of org.eclipse.ui.dialogs.FilteredItemsSelectionDialog$ToggleStatusLineAction

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.