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

fr.ird.observe.entities.referentiel.I18nReferentialEntity Maven / Gradle / Ivy

The newest version!
package fr.ird.observe.entities.referentiel;

/*-
 * #%L
 * ObServe Toolkit :: Common Db
 * %%
 * Copyright (C) 2008 - 2017 IRD, Ultreia.io
 * %%
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as
 * published by the Free Software Foundation, either version 3 of the
 * License, or (at your option) any later version.
 * 
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public
 * License along with this program.  If not, see
 * .
 * #L%
 */

import fr.ird.observe.dto.constants.ReferentialLocale;
import org.nuiton.topia.persistence.event.ListenableTopiaEntity;

public interface I18nReferentialEntity extends ObserveReferentialEntity, ListenableTopiaEntity {

    String PROPERTY_LABEL1 = "label1";

    String PROPERTY_LABEL2 = "label2";

    String PROPERTY_LABEL3 = "label3";

    String PROPERTY_LABEL4 = "label4";

    String PROPERTY_LABEL5 = "label5";

    String PROPERTY_LABEL6 = "label6";

    String PROPERTY_LABEL7 = "label7";

    String PROPERTY_LABEL8 = "label8";

    void setLabel1(String label1);

    String getLabel1();

    void setLabel2(String label2);

    String getLabel2();

    void setLabel3(String label3);

    String getLabel3();

    void setLabel4(String label4);

    String getLabel4();

    void setLabel5(String label5);

    String getLabel5();

    void setLabel6(String label6);

    String getLabel6();

    void setLabel7(String label7);

    String getLabel7();

    void setLabel8(String label8);

    String getLabel8();

    String getLabel(ReferentialLocale referentialLocal);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy