1 32 33 package it.businesslogic.ireport.gui; 34 35 39 public class JRadioButtonMenuItemMDIFrame extends javax.swing.JRadioButtonMenuItem { 40 41 private JMDIFrame frame; 42 43 44 public JRadioButtonMenuItemMDIFrame( JMDIFrame frame,String text) { 45 super(text); 46 this.frame = frame; 47 } 48 49 53 public JMDIFrame getFrame() { 54 return frame; 55 } 56 57 61 public void setFrame(JMDIFrame frame) { 62 this.frame = frame; 63 } 64 65 } 66 | Popular Tags |