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

de.tsl2.nano.bean.def.IIPresentable Maven / Gradle / Ivy

Go to download

TSL2 Framework Descriptor (currency-handling, generic formatter, descriptors for beans, collections, actions and values)

There is a newer version: 2.5.1
Show newest version
/*
 * File: $HeadURL$
 * Id  : $Id$
 * 
 * created by: Tom, Thomas Schneider
 * created on: 24.01.2014
 * 
 * Copyright: (c) Thomas Schneider 2014, all rights reserved
 */
package de.tsl2.nano.bean.def;

import java.io.Serializable;
import java.util.LinkedHashMap;
import java.util.List;


/**
 * 
 * @author Tom, Thomas Schneider
 * @version $Revision$ 
 */
public interface IIPresentable extends IPresentable, Serializable {

    /**
     * @param label The label to set.
     */
    void setLabel(String label);

    /**
     * @param description The description to set.
     */
    void setDescription(String description);

    /**
     * @param layout The layout to set.
     */
    void setLayout(LinkedHashMap layout);

    /**
     * @param layoutConstraints The layoutConstraints to set.
     */
    void setLayoutConstraints(LinkedHashMap layoutConstraints);

    /**
     * @param icon The icon to set.
     */
    void setIcon(String icon);

    /**
     * @param foreground The foreground to set.
     */
    void setForeground(int[] foreground);

    /**
     * @param background The background to set.
     */
    void setBackground(int[] background);

    /** sets an item list */
     T setItemList(List itemlist);

    /** sets nesting */
     T setNesting(boolean nesting);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy