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

org.metawidget.vaadin.ui.Stub Maven / Gradle / Ivy

There is a newer version: 4.2
Show newest version
// Metawidget
//
// For historical reasons, this file is licensed under the LGPL
// (http://www.gnu.org/licenses/lgpl-2.1.html).
//
// Most other files in Metawidget are licensed under both the
// LGPL/EPL and a commercial license. See http://metawidget.org
// for details.

package org.metawidget.vaadin.ui;

import java.util.Iterator;
import java.util.Map;

import org.metawidget.util.CollectionUtils;

import com.vaadin.ui.Component;
import com.vaadin.ui.Panel;

/**
 * Stub for Vaadin environments.
 * 

* Stubs are used to 'stub out' what Metawidget would normally create - either to suppress widget * creation entirely or to create child widgets with a different name. They differ from Facets in * that Facets are simply 'decorations' (such as button bars) to be recognized and arranged at the * discretion of the Layout. *

* We define separate Stub widgets, as opposed to simply a VaadinMetawidget.addStub * method, as this is more amenable to visual UI builders. * * @author Loghman Barari */ public class Stub extends Panel { // // Private members // private Map mAttributes; // // Constructors // public Stub() { super( new com.vaadin.ui.VerticalLayout() ); addStyleName( "light" ); ((com.vaadin.ui.VerticalLayout) getContent()).setMargin( false ); } /** * Convenience constructor. *

* Useful for creating stubs that will otherwise be empty, such as * metawidget.add( new Stub( "foo" )) */ public Stub( String data ) { this(); setData( data ); } // // Public methods // public void setAttribute( String name, String value ) { if ( mAttributes == null ) { mAttributes = CollectionUtils.newHashMap(); } mAttributes.put( name, value ); } public Map getAttributes() { return mAttributes; } /** * Reproduce old Vaadin 6 structure. */ public void addComponent( Component component ) { ((com.vaadin.ui.VerticalLayout) getContent()).addComponent( component ); } /** * Reproduce old Vaadin 6 structure. */ public Iterator getComponentIterator() { return ((com.vaadin.ui.VerticalLayout) getContent()).iterator(); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy