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

org.nuiton.topia.it.mapping.test13.A13A Maven / Gradle / Ivy

The newest version!
package org.nuiton.topia.it.mapping.test13;

/*-
 * #%L
 * ToPIA :: IT
 * %%
 * Copyright (C) 2004 - 2024 Code Lutin
 * %%
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser 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 Lesser Public License for more details.
 * 
 * You should have received a copy of the GNU General Lesser Public
 * License along with this program.  If not, see
 * .
 * #L%
 */

import java.util.Collection;
import java.util.Date;
import org.nuiton.topia.persistence.TopiaEntity;

public interface A13A extends TopiaEntity {

    String PROPERTY_NATURAL_ID_INTEGER = "naturalIdInteger";

    String PROPERTY_NATURAL_ID_STRING = "naturalIdString";

    String PROPERTY_NATURAL_ID_DATE = "naturalIdDate";

    String PROPERTY_INTEGER_FIELD = "integerField";

    String PROPERTY_STRINGS_FIELD = "stringsField";

    String PROPERTY_B13_A = "b13A";

    String PROPERTY_B13_B = "b13B";

    String PROPERTY_B13_C = "b13C";

    void setNaturalIdInteger(Integer naturalIdInteger);

    Integer getNaturalIdInteger();

    void setNaturalIdString(String naturalIdString);

    String getNaturalIdString();

    void setNaturalIdDate(Date naturalIdDate);

    Date getNaturalIdDate();

    void setIntegerField(Integer integerField);

    Integer getIntegerField();

    void addStringsField(String stringsField);

    void addAllStringsField(Iterable stringsField);

    void setStringsField(Collection stringsField);

    void removeStringsField(String stringsField);

    void clearStringsField();

    Collection getStringsField();

    int sizeStringsField();

    boolean isStringsFieldEmpty();

    boolean isStringsFieldNotEmpty();

    boolean containsStringsField(String stringsField);

    void addB13A(B13A b13A);

    void addAllB13A(Iterable b13A);

    void setB13A(Collection b13A);

    void removeB13A(B13A b13A);

    void clearB13A();

    Collection getB13A();

    B13A getB13AByTopiaId(String topiaId);

    Collection getB13ATopiaIds();

    int sizeB13A();

    boolean isB13AEmpty();

    boolean isB13ANotEmpty();

    boolean containsB13A(B13A b13A);

    void setB13B(B13B b13B);

    B13B getB13B();

    void addB13C(B13C b13C);

    void addAllB13C(Iterable b13C);

    void setB13C(Collection b13C);

    void removeB13C(B13C b13C);

    void clearB13C();

    Collection getB13C();

    B13C getB13CByTopiaId(String topiaId);

    Collection getB13CTopiaIds();

    int sizeB13C();

    boolean isB13CEmpty();

    boolean isB13CNotEmpty();

    boolean containsB13C(B13C b13C);

} //A13A




© 2015 - 2025 Weber Informatics LLC | Privacy Policy