src/share/classes/sun/misc/JavaAWTAccess.java

Print this page

        

*** 24,41 **** */ package sun.misc; public interface JavaAWTAccess { - public Object getContext(); - public Object getExecutionContext(); ! public Object get(Object context, Object key); ! public void put(Object context, Object key, Object value); ! public void remove(Object context, Object key); ! // convenience methods whose context is the object returned by getContext() public Object get(Object key); public void put(Object key, Object value); public void remove(Object key); public boolean isDisposed(); public boolean isMainAppContext(); --- 24,43 ---- */ package sun.misc; public interface JavaAWTAccess { ! // Returns the AppContext used for applet logging isolation, or null if ! // no isolation is required. ! // If there's no applet, or if the caller is a stand alone application, ! // or running in the main app context, returns null. ! // Otherwise, returns the AppContext of the calling applet. ! public Object getAppletContext(); ! // convenience methods to cache objects in the current thread group's ! // AppContext public Object get(Object key); public void put(Object key, Object value); public void remove(Object key); public boolean isDisposed(); public boolean isMainAppContext();