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

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

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

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

/**
 * Generic interface that represent a form field group
 *
 * @param 
 */
public interface IFormFieldGroupComponent  extends Serializable {

    String getGroupName();

    C getGroupComponent();

    List> getFieldsComponents();

    void hide();

    void show();

    void remove();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy