1 12 13 package org.ejtools.jmx.browser.state.rules; 14 15 16 17 import java.util.Map ; 18 19 20 21 import org.ejtools.jmx.browser.frame.ServerInternalFrame; 22 23 import org.ejtools.util.state.DefaultRule; 24 25 26 27 36 37 public class ServerInternalFrameRule extends DefaultRule 38 39 { 40 41 50 51 public void loadEnter(Map context) 52 53 { 54 55 ServerInternalFrame frame = new ServerInternalFrame(); 56 57 context.put("FRAME", frame); 58 59 context.put("HOLDER", frame); 60 61 } 62 63 } 64 65 | Popular Tags |