1 23 24 package com.sun.enterprise.tools.guiframework.view; 25 26 import com.iplanet.jato.NavigationException; 27 import com.iplanet.jato.RequestContext; 28 import com.iplanet.jato.model.ModelControlException; 29 import com.iplanet.jato.view.ContainerView; 30 import com.iplanet.jato.view.View; 31 import com.iplanet.jato.view.event.ChildDisplayEvent; 32 import com.iplanet.jato.view.event.DisplayEvent; 33 34 import com.sun.enterprise.tools.guiframework.view.descriptors.ViewDescriptor; 35 import java.util.Map ; 36 37 38 44 public interface DescriptorContainerView extends ContainerView { 45 50 public ViewDescriptor getViewDescriptor(); 51 52 53 54 58 70 public View createChild(String name); 71 72 73 76 public RequestContext getRequestContext(); 77 78 79 82 public void setRequestContext(RequestContext context); 83 84 85 88 public void forwardTo(RequestContext requestContext) throws NavigationException; 89 90 91 92 96 104 public void beginDisplay(DisplayEvent event) throws ModelControlException; 105 106 107 111 public boolean beginChildDisplay(com.iplanet.jato.view.event.ChildDisplayEvent event) throws ModelControlException; 112 113 114 118 public String endChildDisplay(com.iplanet.jato.view.event.ChildContentDisplayEvent event) throws ModelControlException; 119 120 121 125 public void endDisplay(DisplayEvent event); 126 127 128 146 public void registerViewDescriptorChildren(); 147 } 148 | Popular Tags |