All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.apple.eawt.ApplicationEvent Maven / Gradle / Ivy

Go to download

A pluggable jar containing stubs for the Apple Java Extensions, updated for Java 5 & 6

The newest version!
package com.apple.eawt;

import java.util.EventObject;

@Deprecated
public class ApplicationEvent extends EventObject {

    ApplicationEvent(Object source) {
        super(source);
    }

    ApplicationEvent(Object source, String str) {
        super(source);
    }

    @Deprecated
	public String getFilename() {
        return null;
    }

    @Deprecated
    public boolean isHandled() {
        return false;
    }

    @Deprecated
    public void setHandled(boolean state) {}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy