bibliothek.gui.dock.extension.css.CssProperty 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) 2012 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.extension.css;
/**
* A {@link CssProperty} is one property of a {@link CssItem}. A {@link CssProperty} itself
* can have sub-properties, they are only active as long as this {@link CssProperty} is
* attached to a {@link CssItem}.
* In nested properties, if the parent property has the key "x" and the child property has the
* key "y", then inside the css file a property called "x-y" is searched.
*
* @author Benjamin Sigg
*
* @param the type of this property
*/
public interface CssProperty extends CssPropertyContainer {
/**
* Sets the value of this property.
* @param value the new value, can be null
*/
public void set( T value );
/**
* Gest the type of this property.
* @param scheme the scheme in whose realm this property will be used
* @return the type, can be used to convert a {@link String} to
* a T
*/
public CssType getType( CssScheme scheme );
/**
* Called by scheme
once it starts or stops monitoring this property.
* @param scheme the scheme which is responsible for setting the value of this property, or null
* @param key the key with which scheme
will search for the value of this property, or null
* @throws IllegalStateException if this method is called twice in a row with non-null
arguments
*/
public void setScheme( CssScheme scheme, CssPropertyKey key );
}