001 package com.sptci.rwt.webui.style;
002
003 import nextapp.echo2.app.SplitPane;
004
005 import com.sptci.echo2.Dimensions;
006
007 import com.sptci.rwt.webui.QueryExecutorView;
008
009 /**
010 * The {@link nextapp.echo2.app.Style} for the primary {@link
011 * nextapp.echo2.app.SplitPane} used to layout the {@link
012 * com.sptci.rwt.webui.QueryExecutorView}.
013 *
014 * <p>© Copyright 2007 <a href='http://sptci.com/' target='_new'>Sans Pareil Technologies, Inc.</a></p>
015 * @author Rakesh Vidyadharan 2007-10-04
016 * @version $Id: QueryExecutorPane.java 4123 2008-05-25 21:49:01Z rakesh $
017 */
018 public class QueryExecutorPane extends ExecutorPane
019 {
020 /**
021 * Initialise the style properties.
022 */
023 @Override
024 protected void init()
025 {
026 super.init();
027 setProperty( SplitPane.PROPERTY_SEPARATOR_POSITION, Dimensions.getExtent(
028 QueryExecutorView.class.getName() + ".splitpane.height" ) );
029 }
030 }