uilocalelement.java
来自「Java 3D Desktop Environment旨在使用Java 3D来创」· Java 代码 · 共 24 行
JAVA
24 行
package org.j3de.ui;
import javax.swing.event.ChangeListener;
import javax.media.j3d.Node;
import javax.media.j3d.Bounds;
/** UILocalElement is the basic interface that all UIElements have to implement.
*/
public interface UILocalElement {
/** Returns the node, that represents this Element in the SceneGraph.
*/
public Node getNode();
/** Returns the remote element, that is assigned to this element. */
public UIElement getRemoteElement();
/** Add a ChangeListener, that is notified, when the Bounds of the UIElement change. */
public void addBoundsChangeListener(ChangeListener listener);
/** Remove a ChangeListener, that is notified, when the Bounds of the UIElement change. */
public void removeBoundsChangeListener(ChangeListener listener);
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?