alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

What this is

This file is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Other links

The source code

/*
 *                 Sun Public License Notice
 *
 * The contents of this file are subject to the Sun Public License
 * Version 1.0 (the "License"). You may not use this file except in
 * compliance with the License. A copy of the License is available at
 * http://www.sun.com/
 *
 * The Original Code is NetBeans. The Initial Developer of the Original
 * Code is Sun Microsystems, Inc. Portions Copyright 1997-2001 Sun
 * Microsystems, Inc. All Rights Reserved.
 */
package org.netbeans.test.editor.app.core;

import org.w3c.dom.Element;
import javax.swing.text.Document;
import org.netbeans.modules.editor.options.JavaOptions;
import org.netbeans.test.editor.app.core.properties.BadPropertyNameException;
import org.netbeans.test.editor.app.core.properties.BooleanProperty;
import org.netbeans.test.editor.app.core.properties.Properties;
import org.netbeans.test.editor.app.gui.actions.TestDeleteAction;
import org.netbeans.test.editor.app.gui.tree.ActionsCache;
import org.netbeans.test.editor.app.util.ParsingUtils;
import org.openide.options.SystemOption;

/**
 *
 * @author  jlahoda
 * @version
 */
public class TestSetCompletionAction extends TestSetAction {
    
    private boolean caseSensitive;
    private boolean instantSubstitution;
    private boolean naturalSort;
    
    public static String CASE_SENSITIVE = "CaseSensitive";
    public static String INSTANT_SUBSTITUTION = "InstantSubstitution";
    public static String NATURAL_SORT = "NaturalSort";
    
    /** Creates new TestSetJavaIEAction */
    public TestSetCompletionAction(int num) {
        this("setCompletion"+Integer.toString(num));
    }
    
    public TestSetCompletionAction(String name) {
        super(name);
    }
    
    public TestSetCompletionAction(Element node) {
        super(node);
        setCaseSensitive(ParsingUtils.readBoolean(node, CASE_SENSITIVE));
        setInstantSubstitution(ParsingUtils.readBoolean(node, INSTANT_SUBSTITUTION));
        setNaturalSort(ParsingUtils.readBoolean(node, NATURAL_SORT));
    }
    
    public Element toXML(Element node) {
        node = super.toXML(node);
        
        node.setAttribute(CASE_SENSITIVE, String.valueOf(getCaseSensitive()));
        node.setAttribute(INSTANT_SUBSTITUTION, String.valueOf(getInstantSubstitution()));
        node.setAttribute(NATURAL_SORT, String.valueOf(getNaturalSort()));
        return node;
    }
    
    public void fromXML(Element node) throws BadPropertyNameException {
        super.fromXML(node);
        setCaseSensitive(ParsingUtils.readBoolean(node, CASE_SENSITIVE));
        setInstantSubstitution(ParsingUtils.readBoolean(node, INSTANT_SUBSTITUTION));
        setNaturalSort(ParsingUtils.readBoolean(node, NATURAL_SORT));
    }
    
    public Properties getProperties() {
        Properties ret=super.getProperties();
        ret.put(CASE_SENSITIVE, new BooleanProperty(caseSensitive));
        ret.put(INSTANT_SUBSTITUTION, new BooleanProperty(instantSubstitution));
        ret.put(NATURAL_SORT, new BooleanProperty(naturalSort));
        return ret;
    }
    
    public Object getProperty(String name) throws BadPropertyNameException {
        if (name.compareTo(CASE_SENSITIVE) == 0) {
            return new BooleanProperty(caseSensitive);
        } else if (name.compareTo(INSTANT_SUBSTITUTION) == 0) {
            return new BooleanProperty(instantSubstitution);
        } else if (name.compareTo(NATURAL_SORT) == 0) {
            return new BooleanProperty(naturalSort);
        } else {
            return super.getProperty(name);
        }
    }
    
    public void setProperty(String name, Object value)  throws BadPropertyNameException {
        if (name.compareTo(CASE_SENSITIVE) == 0) {
            setCaseSensitive(((BooleanProperty)value).getValue());
        } else if (name.compareTo(INSTANT_SUBSTITUTION) == 0) {
            setInstantSubstitution(((BooleanProperty)value).getValue());
        } else if (name.compareTo(NATURAL_SORT) == 0) {
            setNaturalSort(((BooleanProperty)value).getValue());
        } else {
            super.setProperty(name, value);
        }
    }
    
    public boolean getCaseSensitive() {
        return caseSensitive;
    }
    
    public void setCaseSensitive(boolean value) {
        boolean old = getCaseSensitive();
        
        caseSensitive = value;
        firePropertyChange(CASE_SENSITIVE, old ? Boolean.TRUE : Boolean.FALSE, value ? Boolean.TRUE : Boolean.FALSE);
    }
    
    public boolean getInstantSubstitution() {
        return instantSubstitution;
    }
    
    public void setInstantSubstitution(boolean value) {
        boolean old = getInstantSubstitution();
        
        instantSubstitution = value;
        firePropertyChange(INSTANT_SUBSTITUTION, old ? Boolean.TRUE : Boolean.FALSE, value ? Boolean.TRUE : Boolean.FALSE);
    }
    
    public boolean getNaturalSort() {
        return naturalSort;
    }
    
    public void setNaturalSort(boolean value) {
        boolean old = getNaturalSort();
        
        naturalSort = value;
        firePropertyChange(NATURAL_SORT, old ? Boolean.TRUE : Boolean.FALSE, value ? Boolean.TRUE : Boolean.FALSE);
    }
    
    public void perform() {
        super.perform();
        JavaOptions opts = (JavaOptions)(SystemOption.findObject(JavaOptions.class));
        opts.setCompletionCaseSensitive(caseSensitive);
        opts.setCompletionInstantSubstitution(instantSubstitution);
        opts.setCompletionNaturalSort(naturalSort);
    }
}
... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.