CIB jView form technischer Leitfaden

7. Schneller Einstieg: Dynamische Anbindung an die Formularkomponente JView&form

7.1. Interface FormFieldInfo zum Austausch von Informationen über ein Formularfeld

Die Datenstruktur FormFieldInfo dient zum Austausch von Informationen über ein Formularfeld, sie ist im CIB jView (package de.cib.view.modules.form) definiert.

Interface FormFieldInfo (extends FieldInfo):
package de.cib.view.modules.form;
import de.cib.view.modules.FieldInfo;
 
/**
 * Interface representing the form field info for information exchange.
 *
 * It allows information exchange about a list of form fields e.g. via
 * interface FormFieldCallback.
 * @see FieldInfo
 * @see FormFieldCallback
 */
public interface FormFieldInfo extends FieldInfo {
 
      public Object getContent();
 
      public void setContent(Object content);
 
      public Object getStates();
}