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

de.bund.bva.isyfact.common.web.layout.HilfeModel Maven / Gradle / Ivy

Go to download

Die IsyFact-Standards bilden das architektonische, technologische und methodische Fundament der IsyFact. Sie umfassen allgemeingültige und wiederverwendbare Konzepte und Komponenten, die für die Entwicklung beliebiger Fachanwendungen relevant sind.

There is a newer version: 6.2.0
Show newest version
package de.bund.bva.isyfact.common.web.layout;

import de.bund.bva.isyfact.common.web.global.AbstractMaskenModel;

/**
 * Model zur Steuerung der Sichtbarkeit des Hilfe-Buttons.
 *
 * @author msg
 * @deprecated This module is deprecated and will be removed in a future release.
 * It is recommended to use isy-angular-widgets instead.
 */
@Deprecated
public class HilfeModel extends AbstractMaskenModel {

    private static final long serialVersionUID = 1L;
    /**
     * Gibt an, ob der Hilfe-Button angezeigt wird.
     */
    private boolean hilfeButtonAvailable;

    @SuppressWarnings("javadoc")
    public boolean isHilfeButtonAvailable() {

        return hilfeButtonAvailable;
    }

    @SuppressWarnings("javadoc")
    public void setHilfeButtonAvailable(boolean hilfeButtonAvailable) {

        this.hilfeButtonAvailable = hilfeButtonAvailable;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy