📄 control.java
字号:
/* * @(#)Control.java 1.7 02/07/24 @(#) * * Copyright (c) 2002 Sun Microsystems, Inc. All rights reserved. * PROPRIETARY/CONFIDENTIAL * Use is subject to license terms. */package javax.microedition.media;/** * A <code>Control</code> object is used to control some media * processing functions. The set of * operations are usually functionally related. Thus a <code>Control</code> * object provides a logical grouping of media processing functions. * <p> * <code>Control</code>s are obtained from <code>Controllable</code>. * The <code>Player</code> interface extends <code>Controllable</code>. * Therefore a <code>Player</code> implementation can use the * <code>Control</code> interface * to extend its media processing functions. For example, * a <code>Player</code> can expose a <code>VolumeControl</code> to allow * the volume level to be set. * <p> * Multiple <code>Control</code>s can be implemented by the same object. * For example, an object can implement both <code>VolumeControl</code> * and <code>ToneControl</code>. In this case, the object can be * used for controlling both the volume and tone generation. * <p> * The <code>javax.microedition.media.control</code> package specifies * a set of pre-defined <code>Control</code>s. * * @see Controllable * @see Player */public interface Control {}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -