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

bibliothek.gui.dock.common.perspective.CStationPerspective Maven / Gradle / Ivy

Go to download

DockingFrames is an open source Java Swing docking framework, licenced under LGPL 2.1. This is the same distribution as the original distribution (http://www.docking-frames.org/), only reinstalled in maven

There is a newer version: 1.1.2p20b.fix-1
Show newest version
/*
 * Bibliothek - DockingFrames
 * Library built on Java/Swing, allows the user to "drag and drop"
 * panels containing any Swing-Component the developer likes to add.
 * 
 * Copyright (C) 2010 Benjamin Sigg
 * 
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 * 
 * Benjamin Sigg
 * [email protected]
 * CH - Switzerland
 */
package bibliothek.gui.dock.common.perspective;

import bibliothek.gui.Dockable;
import bibliothek.gui.dock.common.CControl;
import bibliothek.gui.dock.common.CStation;
import bibliothek.util.FrameworkOnly;
import bibliothek.util.Path;

/**
 * A representation of a {@link CStation}.
 * @author Benjamin Sigg
 */
public interface CStationPerspective extends CElementPerspective{
	/**
	 * Gets the unique identifier of this station.
	 * @return the unique identifier
	 */
	public String getUniqueId();
	
	/**
	 * Gets the unique id denoting the type of this {@link CStation}, this should be the
	 * exact same result as {@link CStation#getTypeId()} will return.
	 * @return the type id, can be null
	 */
	public Path getTypeId();
	
	/**
	 * Informs this station by which perspective it is used. 
	 * @param perspective the perspective that uses this station or null
	 */
	@FrameworkOnly
	public void setPerspective( CPerspective perspective );
	
	/**
	 * Gets the perspective which presents this station.
	 * @return the owner of this station, can be null
	 */
	public CPerspective getPerspective();

	/**
	 * Tells whether this station will act as a {@link CStation#isWorkingArea() working area}.
	 * @return whether this station acts as working area
	 */
	public boolean isWorkingArea();
	

	/**
	 * Tells whether this is a root station or not.
	 * @return the root flag
	 * @see #setRoot(boolean)
	 */
	public boolean isRoot();
	
	/**
	 * Sets the root station flag. Setting flag is equivalent of setting the root parameter when calling
	 * {@link CControl#addStation(bibliothek.gui.dock.common.CStation, boolean)}. The location of a {@link Dockable} is
	 * always relative to its nearest root-station parent.
* Please note that the root-flag set by calling {@link CControl#addStation(bibliothek.gui.dock.common.CStation, boolean)} will * never be overridden by the flag set in the perspective. * @param root */ public void setRoot( boolean root ); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy