FileDocCategorySizeDatePackage
PreferenceChangeEvent.javaAPI DocAndroid 1.5 API3569Wed May 06 22:41:04 BST 2009java.util.prefs

PreferenceChangeEvent.java

/* Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 * 
 *     http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */


package java.util.prefs;

import java.io.IOException;
import java.io.NotSerializableException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.io.Serializable;
import java.util.EventObject;

/**
 * This is the event class to indicate that a preference has been added, deleted
 * or updated.
 * <p>
 * Please note that the serialization functionality has not yet been implemented, so
 * the serialization methods do nothing but throw a {@code NotSerializableException}.
 * </p>
 * 
 * @since Android 1.0
 */
public class PreferenceChangeEvent extends EventObject implements Serializable {

    private static final long serialVersionUID = 793724513368024975L;
    
    private final Preferences node;

    private final String key;

    private final String value;

    /**
     * Construct a new {@code PreferenceChangeEvent} instance.
     * 
     * @param p
     *            the {@code Preferences} instance that fired this event; this object is
     *            considered as the event's source.
     * @param k
     *            the changed preference key.
     * @param v
     *            the new value of the changed preference, this value can be
     *            {@code null}, which means the preference has been removed.
     * @since Android 1.0
     */
    public PreferenceChangeEvent(Preferences p, String k, String v) {
        super(p);
        node = p;
        key = k;
        value = v;
    }

    /**
     * Gets the key of the changed preference.
     * 
     * @return the changed preference's key.
     * @since Android 1.0
     */
    public String getKey() {
        return key;
    }

    /**
     * Gets the new value of the changed preference or {@code null} if the
     * preference has been removed.
     * 
     * @return the new value of the changed preference or null if the preference
     *         has been removed.
     * @since Android 1.0
     */
    public String getNewValue() {
        return value;
    }

    /**
     * Gets the {@code Preferences} instance that fired this event.
     * 
     * @return the {@code Preferences} instance that fired this event.
     * @since Android 1.0
     */
    public Preferences getNode() {
        return node;
    }

    /*
     * This method always throws a <code>NotSerializableException</code>,
     * because this object cannot be serialized,
     */
    private void writeObject(ObjectOutputStream out) throws IOException {
        throw new NotSerializableException();
    }

    /*
     * This method always throws a <code>NotSerializableException</code>,
     * because this object cannot be serialized,
     */
    private void readObject(ObjectInputStream in) throws IOException{
        throw new NotSerializableException();
    }
}