< prev index next >

src/java.desktop/macosx/classes/com/apple/laf/ScreenMenuItem.java

Print this page

        

@@ -95,10 +95,11 @@
         fMenuItem.removePropertyChangeListener(fListener);
         fListener = null;
         fMenuItem.removeComponentListener(this);
     }
 
+    @SuppressWarnings("deprecation")
     static void syncLabelAndKS(MenuItem menuItem, String label, KeyStroke ks) {
         final MenuComponentPeer peer = menuItem.getPeer();
         if (!(peer instanceof CMenuItem)) {
             //Is it possible?
             return;

@@ -163,18 +164,20 @@
         if (parent != null) {
             ((ScreenMenuPropertyHandler)parent).setChildVisible(fMenuItem, b);
         }
     }
 
+    @SuppressWarnings("deprecation")
     public void setToolTipText(final String text) {
         final MenuComponentPeer peer = getPeer();
         if (!(peer instanceof CMenuItem)) return;
 
         final CMenuItem cmi = (CMenuItem)peer;
         cmi.setToolTipText(text);
     }
 
+    @SuppressWarnings("deprecation")
     public void setIcon(final Icon i) {
         final MenuComponentPeer peer = getPeer();
         if (!(peer instanceof CMenuItem)) return;
 
         final CMenuItem cmi = (CMenuItem)peer;
< prev index next >