com.apple.eawt.ApplicationEvent 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.util.EventObject;
@Deprecated
public class ApplicationEvent extends EventObject
{
ApplicationEvent(Object paramObject)
{
super(paramObject);
throw Application.unimplemented();
}
ApplicationEvent(Object paramObject, String paramString) {
super(paramObject);
throw Application.unimplemented();
}
@Deprecated
public boolean isHandled() {
throw Application.unimplemented();
}
@Deprecated
public void setHandled(boolean paramBoolean) {
throw Application.unimplemented();
}
@Deprecated
public String getFilename() {
throw Application.unimplemented();
}
}