Package com.mucommander.ui.encoding

Examples of com.mucommander.ui.encoding.EncodingListener


    public PrefEncodingSelectBox(DialogOwner dialogOwner, String selectedEncoding) {
        super(dialogOwner, selectedEncoding);
    }

    public void addDialogListener(final PreferencesDialog dialog) {
        listener = new EncodingListener() {
            public void encodingChanged(Object source, String oldEncoding, String newEncoding) {
                dialog.componentChanged(PrefEncodingSelectBox.this);
            }
        };
        addEncodingListener(listener);
View Full Code Here

TOP

Related Classes of com.mucommander.ui.encoding.EncodingListener

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.