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

fr.ird.observe.dto.referential.WithI18n Maven / Gradle / Ivy

There is a newer version: 4.34
Show newest version
package fr.ird.observe.dto.referential;

/*-
 * #%L
 * ObServe Toolkit :: Common Dto
 * %%
 * Copyright (C) 2017 - 2020 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.ObserveDto;

/**
 * Created on 10/06/19.
 *
 * @author Tony Chemit - [email protected]
 * @since ?
 */
public interface WithI18n extends ObserveDto {

    String PROPERTY_LABEL = "label";
    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";

    String getLabel1();

    void setLabel1(String label1);

    String getLabel2();

    void setLabel2(String label2);

    String getLabel3();

    void setLabel3(String label3);

    String getLabel4();

    void setLabel4(String label4);

    String getLabel5();

    void setLabel5(String label5);

    String getLabel6();

    void setLabel6(String label6);

    String getLabel7();

    void setLabel7(String label7);

    String getLabel8();

    void setLabel8(String label8);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy