/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/**
* Constants used with the JScrollPane component.
*
* @author Hans Muller
*/
public interface ScrollPaneConstants
{
/**
* Identifies a "viewport" or display area, within which
* scrolled contents are visible.
*/
/** Identifies a vertical scrollbar. */
/** Identifies a horizonal scrollbar. */
/**
* Identifies the area along the left side of the viewport between the
* upper left corner and the lower left corner.
*/
/**
* Identifies the area at the top the viewport between the
* upper left corner and the upper right corner.
*/
/** Identifies the lower left corner of the viewport. */
/** Identifies the lower right corner of the viewport. */
/** Identifies the upper left corner of the viewport. */
/** Identifies the upper right corner of the viewport. */
/** Identifies the lower leading edge corner of the viewport. The leading edge
* is determined relative to the Scroll Pane's ComponentOrientation property.
*/
/** Identifies the lower trailing edge corner of the viewport. The trailing edge
* is determined relative to the Scroll Pane's ComponentOrientation property.
*/
/** Identifies the upper leading edge corner of the viewport. The leading edge
* is determined relative to the Scroll Pane's ComponentOrientation property.
*/
/** Identifies the upper trailing edge corner of the viewport. The trailing edge
* is determined relative to the Scroll Pane's ComponentOrientation property.
*/
/** Identifies the vertical scroll bar policy property. */
/** Identifies the horizontal scroll bar policy property. */
/**
* Used to set the vertical scroll bar policy so that
* vertical scrollbars are displayed only when needed.
*/
/**
* Used to set the vertical scroll bar policy so that
* vertical scrollbars are never displayed.
*/
/**
* Used to set the vertical scroll bar policy so that
* vertical scrollbars are always displayed.
*/
/**
* Used to set the horizontal scroll bar policy so that
* horizontal scrollbars are displayed only when needed.
*/
/**
* Used to set the horizontal scroll bar policy so that
* horizontal scrollbars are never displayed.
*/
/**
* Used to set the horizontal scroll bar policy so that
* horizontal scrollbars are always displayed.
*/
}