javax.faces.model

Class ScalarDataModel<E>

  • All Implemented Interfaces:
    Iterable<E>

    public class ScalarDataModel<E>
    extends DataModel<E>

    ScalarDataModel is a convenience implementation of DataModel that wraps an individual Java object.

    • Constructor Detail

      • ScalarDataModel

        public ScalarDataModel()

        Construct a new ScalarDataModel with no specified wrapped data.

      • ScalarDataModel

        public ScalarDataModel(E scalar)

        Construct a new ScalarDataModel wrapping the specified scalar object.

        Parameters:
        scalar - Scalar to be wrapped (if any)
    • Method Detail

      • isRowAvailable

        public boolean isRowAvailable()

        Return true if there is wrappedData available, and the current value of rowIndex is zero. Otherwise, return false.

        Specified by:
        isRowAvailable in class DataModel<E>
        Throws:
        FacesException - if an error occurs getting the row availability
      • getRowCount

        public int getRowCount()

        If there is wrappedData available, return 1. If no wrappedData is available, return -1.

        Specified by:
        getRowCount in class DataModel<E>
        Throws:
        FacesException - if an error occurs getting the row count
      • getRowData

        public E getRowData()

        If wrapped data is available, return the wrapped data instance. Otherwise, return null.

        Specified by:
        getRowData in class DataModel<E>
        Throws:
        FacesException - if an error occurs getting the row data
        IllegalArgumentException - if now row data is available at the currently specified row index
      • getRowIndex

        public int getRowIndex()
        Description copied from class: DataModel

        Return the zero-relative index of the currently selected row. If we are not currently positioned on a row, or no wrappedData is available, return -1.

        Specified by:
        getRowIndex in class DataModel<E>
        Throws:
        FacesException
      • setRowIndex

        public void setRowIndex(int rowIndex)
        Description copied from class: DataModel

        Set the zero-relative index of the currently selected row, or -1 to indicate that we are not positioned on a row. It is possible to set the row index at a value for which the underlying data collection does not contain any row data. Therefore, callers may use the isRowAvailable() method to detect whether row data will be available for use by the getRowData() method.

        If there is no wrappedData available when this method is called, the specified rowIndex is stored (and may be retrieved by a subsequent call to getRowData()), but no event is sent. Otherwise, if the currently selected row index is changed by this call, a DataModelEvent will be sent to the rowSelected() method of all registered DataModelListeners.

        Specified by:
        setRowIndex in class DataModel<E>
        Parameters:
        rowIndex - The new zero-relative index (must be non-negative)
        Throws:
        FacesException
        IllegalArgumentException - if rowIndex is less than -1
      • setWrappedData

        public void setWrappedData(Object data)
        Description copied from class: DataModel

        Set the object representing the data collection wrapped by this DataModel. If the specified data is null, detach this DataModel from any previously wrapped data collection instead.

        If data is non-null, the currently selected row index must be set to zero, and a DataModelEvent must be sent to the rowSelected() method of all registered DataModelListeners indicating that this row is now selected.

        Specified by:
        setWrappedData in class DataModel<E>
        Parameters:
        data - Data collection to be wrapped, or null to detach from any previous data collection
        Throws:
        ClassCastException - if data is not of the appropriate type for this DataModel implementation

Deutsche Übersetzung

Sie haben gebeten, diese Seite auf Deutsch zu besuchen. Momentan ist nur die Oberfläche übersetzt, aber noch nicht der gesamte Inhalt.

Wenn Sie mir bei Übersetzungen helfen wollen, ist Ihr Beitrag willkommen. Alles, was Sie tun müssen, ist, sich auf der Website zu registrieren und mir eine Nachricht zu schicken, in der Sie gebeten werden, Sie der Gruppe der Übersetzer hinzuzufügen, die Ihnen die Möglichkeit gibt, die gewünschten Seiten zu übersetzen. Ein Link am Ende jeder übersetzten Seite zeigt an, dass Sie der Übersetzer sind und einen Link zu Ihrem Profil haben.

Vielen Dank im Voraus.

Dokument erstellt 11/06/2005, zuletzt geändert 18/08/2025
Quelle des gedruckten Dokuments:https://www.gaudry.be/de/java-api-javaee-rf-javax/faces/model/scalardatamodel.html

Die Infobro ist eine persönliche Seite, deren Inhalt in meiner alleinigen Verantwortung liegt. Der Text ist unter der CreativeCommons-Lizenz (BY-NC-SA) verfügbar. Weitere Informationen auf die Nutzungsbedingungen und dem Autor.

Referenzen

  1. Zeigen Sie - html-Dokument Sprache des Dokuments:fr Manuel PHP : https://docs.oracle.com

Diese Verweise und Links verweisen auf Dokumente, die während des Schreibens dieser Seite konsultiert wurden, oder die zusätzliche Informationen liefern können, aber die Autoren dieser Quellen können nicht für den Inhalt dieser Seite verantwortlich gemacht werden.
Der Autor dieser Website ist allein dafür verantwortlich, wie die verschiedenen Konzepte und Freiheiten, die mit den Nachschlagewerken gemacht werden, hier dargestellt werden. Denken Sie daran, dass Sie mehrere Quellinformationen austauschen müssen, um das Risiko von Fehlern zu reduzieren.