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

tools.dynamia.viewers.IFormFieldComponent Maven / Gradle / Ivy

There is a newer version: 5.3.0
Show newest version
package tools.dynamia.viewers;

import java.io.Serializable;

public interface IFormFieldComponent  extends Serializable {

    String getFieldName();

    C getInputComponent();

    LabelComponent getLabel();

    C getInputComponentAlt();

    void updateLabel(String label);

    void remove();

    void hide();

    void show();


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy