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