java-org.hwo.ui/src/org/hwo/models/TableMapper/TableColumn.java

18 lines
392 B
Java

package org.hwo.models.TableMapper;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
@Retention(RetentionPolicy.RUNTIME)
public @interface TableColumn {
String label() default "";
boolean readonly() default false;
boolean visible() default true;
int width() default 100;
String after() default "";
boolean firstColumn() default false;
}