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

bibliothek.gui.dock.themes.DefaultDisplayerFactoryValue Maven / Gradle / Ivy

The 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) 2007 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.themes;

import bibliothek.gui.DockStation;
import bibliothek.gui.DockTheme;
import bibliothek.gui.dock.displayer.DisplayerRequest;
import bibliothek.gui.dock.station.DisplayerFactory;
import bibliothek.gui.dock.station.DockableDisplayer;
import bibliothek.gui.dock.themes.basic.BasicDisplayerFactory;

/**
 * A wrapper for a {@link DisplayerFactory}. Every call to the Interface is forwarded to a delegate. If no delegate is set,
 * a default DisplayerFactory provided by the {@link DockTheme} is used.
 * @author Benjamin Sigg
 */
public class DefaultDisplayerFactoryValue extends StationThemeItemValue implements DisplayerFactoryValue {
	/**
	 * Creates a new object.
	 * @param id the identifier used for retrieving a resource of {@link ThemeManager}
	 * @param station the owner of this object, not null
	 */
	public DefaultDisplayerFactoryValue( String id, DockStation station ){
		super( id, KIND_DISPLAYER_FACTORY, ThemeManager.DISPLAYER_FACTORY_TYPE, station );
	}
	
	/**
	 * Creates a new {@link DockableDisplayer} and answers to request. This method does always create
	 * a new {@link DockableDisplayer}.
	 * @param request the request to answer
	 */
	public void request( DisplayerRequest request ){
		DisplayerFactory factory = get();
		if( factory == null ){
    		factory = new BasicDisplayerFactory();
    	}
    	
		factory.request( request );
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy