⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 uifactory.java

📁 Java 3D Desktop Environment旨在使用Java 3D来创建一个3D桌面环境。功能包括:分布式的应用程序
💻 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 + -