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