📄 uifactory.java
字号:
package org.j3de.ui;
import java.io.Serializable;
import java.rmi.Remote;
import java.rmi.RemoteException;
public interface UIFactory extends Remote, Serializable {
public UIElement createUIElement(Class guiclass) throws UICreationException, RemoteException;
public Label3D createLabel3D() throws UICreationException, RemoteException;
public Label3D createLabel3D(String text) throws UICreationException, RemoteException;
public TextField3D createTextField3D() throws UICreationException, RemoteException;
public PasswordField3D createPasswordField3D() throws UICreationException, RemoteException;
public Border3D createBorder3D() throws UICreationException, RemoteException;
public UIContainer createContainer() throws UICreationException, RemoteException;
public ActionElement createActionElement() throws UICreationException, RemoteException;
public UIElement loadShape(Class shapeClass) throws UICreationException, RemoteException;
public void invalidate(UIElement elements) throws RemoteException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -