All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.fife.ui.dockablewindows.DockableWindowConstants Maven / Gradle / Ivy

/*
 * 10/21/2005
 *
 * DockableWindowConstants.java - Constants pertinent to the dockable windows
 * package.
 * Copyright (C) 2005 Robert Futrell
 * http://fifesoft.com/rtext
 * Licensed under a modified BSD license.
 * See the included license file for details.
 */
package org.fife.ui.dockablewindows;


/**
 * Interface defining constants pertinent to dockable windows.
 *
 * @author Robert Futrell
 * @version 1.0
 */
public interface DockableWindowConstants {

	/**
	 * Integer constant representing the top of the window.
	 */
	public static final int TOP		= 0;

	/**
	 * Integer constant representing the left of the window.
	 */
	public static final int LEFT		= 1;

	/**
	 * Integer constant representing the bottom of the window.
	 */
	public static final int BOTTOM	= 2;

	/**
	 * Integer constant representing the right of the window.
	 */
	public static final int RIGHT		= 3;

	/**
	 * Integer constant representing a floating window.
	 */
	public static final int FLOATING	= 4;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy