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

de.tsl2.nano.bean.annotation.Presentable 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
 * created on: 05.01.2016
 * 
 * Copyright: (c) Thomas Schneider 2016, all rights reserved
 */
package de.tsl2.nano.bean.annotation;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * Define attribute presentation. For further informmations, see IPresentable.
 * @author Tom
 * @version $Revision$ 
 */
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.PARAMETER, ElementType.METHOD})
public @interface Presentable {
    int type() default -1;
    int style() default -1;
    boolean enabled() default true;
    boolean visible() default true;
    boolean searchable() default true;
    boolean nesting() default false;
    String label() default "";
    String description() default "";
    String[] items() default {};
    String[] layout() default {};
    String[] layoutConstraints() default {};
    int width() default -1;
    int height() default -1;
    String icon() default "";
    int[] foreground() default {};
    int[] background() default {};

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy