src/share/classes/sun/awt/AWTAccessor.java

Print this page




 612     }
 613 
 614     /**
 615      * An accessor for the KeyEvent class
 616      */
 617     public interface KeyEventAccessor {
 618         /**
 619          * Sets rawCode field for KeyEvent
 620          */
 621         void setRawCode(KeyEvent ev, long rawCode);
 622 
 623         /**
 624          * Sets primaryLevelUnicode field for KeyEvent
 625          */
 626         void setPrimaryLevelUnicode(KeyEvent ev, long primaryLevelUnicode);
 627 
 628         /**
 629          * Sets extendedKeyCode field for KeyEvent
 630          */
 631         void setExtendedKeyCode(KeyEvent ev, long extendedKeyCode);





 632     }
 633 
 634     /**
 635      * An accessor for the ClientPropertyKey class
 636      */
 637     public interface ClientPropertyKeyAccessor {
 638         /**
 639          * Retrieves JComponent_TRANSFER_HANDLER enum object
 640          */
 641         Object getJComponent_TRANSFER_HANDLER();
 642     }
 643 
 644     /**
 645      * An accessor for the SystemTray class
 646      */
 647     public interface SystemTrayAccessor {
 648         /**
 649          * Support for reporting bound property changes for Object properties.
 650          */
 651         void firePropertyChange(SystemTray tray, String propertyName, Object oldValue, Object newValue);




 612     }
 613 
 614     /**
 615      * An accessor for the KeyEvent class
 616      */
 617     public interface KeyEventAccessor {
 618         /**
 619          * Sets rawCode field for KeyEvent
 620          */
 621         void setRawCode(KeyEvent ev, long rawCode);
 622 
 623         /**
 624          * Sets primaryLevelUnicode field for KeyEvent
 625          */
 626         void setPrimaryLevelUnicode(KeyEvent ev, long primaryLevelUnicode);
 627 
 628         /**
 629          * Sets extendedKeyCode field for KeyEvent
 630          */
 631         void setExtendedKeyCode(KeyEvent ev, long extendedKeyCode);
 632 
 633         /**
 634          * Gets original source for KeyEvent
 635          */
 636         Component getOriginalSource(KeyEvent ev);
 637     }
 638 
 639     /**
 640      * An accessor for the ClientPropertyKey class
 641      */
 642     public interface ClientPropertyKeyAccessor {
 643         /**
 644          * Retrieves JComponent_TRANSFER_HANDLER enum object
 645          */
 646         Object getJComponent_TRANSFER_HANDLER();
 647     }
 648 
 649     /**
 650      * An accessor for the SystemTray class
 651      */
 652     public interface SystemTrayAccessor {
 653         /**
 654          * Support for reporting bound property changes for Object properties.
 655          */
 656         void firePropertyChange(SystemTray tray, String propertyName, Object oldValue, Object newValue);