代码搜索结果
找到约 322,615 项符合
Interface 的代码
activationlistener.java
package org.j3de.input;
public interface ActivationListener {
public void setActivation(boolean isActive);
}
localuifactory.java
package org.j3de.ui;
import java.io.Serializable;
import java.rmi.Remote;
import java.rmi.RemoteException;
public interface LocalUIFactory {
public UIFactory getUIFactory();
}
backgrounduielement.java
package org.j3de.ui;
public interface BackgroundUIElement extends UIElement {
}
uicontainer.java
package org.j3de.ui;
import java.rmi.RemoteException;
public interface UIContainer extends UIElement {
public void add(UIElement element) throws RemoteException;
public void remove(UIE
passwordfield3d.java
package org.j3de.ui;
import java.rmi.RemoteException;
public interface PasswordField3D extends UIElement {
public char[] getPassword() throws RemoteException;
}
uielement.java
package org.j3de.ui;
import java.rmi.Remote;
/** UIElement is the basic (remote) interface that all UIElements have to implement.
*/
public interface UIElement extends Remote {
}
haschangingbounds.java
package org.j3de.ui;
import javax.swing.event.ChangeListener;
public interface HasChangingBounds {
public void addBoundsListener(ChangeListener listener);
public void r
environmentlightsuielement.java
package org.j3de.ui;
public interface EnvironmentLightsUIElement extends UIElement {
}
skinable.java
package org.j3de.ui;
import javax.media.j3d.Appearance;
public interface Skinable {
public void setSkin(Skin skin) throws SkinException;
}
uielementmapper.java
package org.j3de.ui;
public interface UIElementMapper {
public UILocalElement getLocal(UIElement element);
}