sun.awt
public class: AppContext [javadoc |
source]
java.lang.Object
sun.awt.AppContext
Stub class, added to make applications like Netbeans which address
this class by name compilable on Harmony.
| Methods from java.lang.Object: |
|---|
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Method from sun.awt.AppContext Detail: |
public Object get(Object key) {
throw new UnsupportedOperationException(
"sun.awt.AppContext class is a stub and is not implemented");
}
|
public static final AppContext getAppContext() {
return instance;
}
Stub method, returns the instance of this class; |
public Object put(Object key,
Object value) {
throw new UnsupportedOperationException(
"sun.awt.AppContext class is a stub and is not implemented");
}
|
public Object remove(Object key) {
throw new UnsupportedOperationException(
"sun.awt.AppContext class is a stub and is not implemented");
}
|