FileDocCategorySizeDatePackage
ActionControl.javaAPI DocJMF 2.1.1e442Mon May 12 12:20:56 BST 2003com.sun.media.controls

ActionControl.java

/*
 * @(#)ActionControl.java	1.2 02/08/21
 *
 * Copyright (c) 1996-2002 Sun Microsystems, Inc.  All rights reserved.
 */

package com.sun.media.controls;

import com.sun.media.*;

/**
 * ActionControl can be used to perform an action, similar to the behaviour
 * of a push button.
 */
public interface ActionControl extends AtomicControl {

    /**
     * Returns true if the action could be performed.
     */
    boolean performAction();
}