propertystatelistener.java

来自「java属性邦定的(JSR-295)的一个实现」· Java 代码 · 共 27 行

JAVA
27
字号
/*
 * Copyright (C) 2007 Sun Microsystems, Inc. All rights reserved. Use is
 * subject to license terms.
 */

package org.jdesktop.beansbinding;

import java.util.EventListener;

/**
 * {@code PropertyStateListeners} are registerd on {@link org.jdesktop.beansbinding.Property}
 * instances, to be notified when the state of the property changes.
 *
 * @author Shannon Hickey
 */
public interface PropertyStateListener extends EventListener {

    /**
     * Called to notify the listener that a change of state has occurred to
     * one of the {@code Property} instances upon which the listener is registered.
     *
     * @param pse an event describing the state change, {@code non-null}
     */
    public void propertyStateChanged(PropertyStateEvent pse);

}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?