1 7 package org.ejtools.jndi.browser.state.rules; 8 9 import java.util.Map ; 10 11 import org.ejtools.jndi.browser.frame.ServerInternalFrame; 12 import org.ejtools.util.state.DefaultRule; 13 14 19 public class ServerInternalFrameRule extends DefaultRule 20 { 21 26 public void loadEnter(Map context) 27 { 28 ServerInternalFrame frame = new ServerInternalFrame(); 29 context.put("FRAME", frame); 30 context.put("HOLDER", frame); 31 } 32 } 33 | Popular Tags |