com.apple.eawt.FullScreenUtilities Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of orange-extensions Show documentation
Show all versions of orange-extensions Show documentation
A pluggable jar containing stubs for the Apple Java Extensions, updated for Java 5 and 6
The newest version!
package com.apple.eawt;
import java.awt.Window;
public final class FullScreenUtilities
{
FullScreenUtilities()
{
throw Application.unimplemented();
}
public static void setWindowCanFullScreen(Window paramWindow, boolean paramBoolean) {
throw Application.unimplemented();
}
public static void addFullScreenListenerTo(Window paramWindow, FullScreenListener paramFullScreenListener) {
throw Application.unimplemented();
}
public static void removeFullScreenListenerFrom(Window paramWindow, FullScreenListener paramFullScreenListener) {
throw Application.unimplemented();
}
}