/* * RequestResponsePanel.java * * Created on 2.2.2009 * */ package netukar.tinybrowser.ui; import javax.swing.JScrollPane; import javax.swing.JSplitPane; import netukar.tinybrowser.ui.request.RequestPanel; import netukar.tinybrowser.ui.response.ResponsePanel; /** * * @author Radovan Netuka */ public class RequestResponsePanel extends JSplitPane { /** * Creates a new instance of RequestResponsePanel. */ public RequestResponsePanel() { super(HORIZONTAL_SPLIT); setLeftComponent(new JScrollPane(new RequestPanel())); setRightComponent(new JScrollPane(new ResponsePanel())); setResizeWeight(0.5); setDividerLocation(0.5); } }