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

pl.fhframework.model.forms.Node Maven / Gradle / Ivy

There is a newer version: 4.10.401
Show newest version
package pl.fhframework.model.forms;

import lombok.Getter;
import lombok.Setter;
import pl.fhframework.annotations.Control;
import pl.fhframework.annotations.DocumentedComponentAttribute;
import pl.fhframework.annotations.XMLProperty;

/**
 * To be removed in near future!!
 */
@Control(parents = {Tree.class})
@Deprecated
public class Node extends GroupingComponent {

    private static final String ATTR_LABEL = "label";

    @Getter
    @Setter
    @XMLProperty(value = ATTR_LABEL)
    @DocumentedComponentAttribute(value = "Node label")
    private String label;

    public Node(Form form) {
        super(form);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy