001/* 002 * ============================================================================ 003 * Copyright © 2002-2023 by Thomas Thrien. 004 * All Rights Reserved. 005 * ============================================================================ 006 * 007 * Licensed to the public under the agreements of the GNU Lesser General Public 008 * License, version 3.0 (the "License"). You may obtain a copy of the License at 009 * 010 * http://www.gnu.org/licenses/lgpl.html 011 * 012 * Unless required by applicable law or agreed to in writing, software 013 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT 014 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the 015 * License for the specific language governing permissions and limitations 016 * under the License. 017 */ 018 019package org.tquadrat.foundation.i18n; 020 021import static java.lang.annotation.ElementType.FIELD; 022import static java.lang.annotation.ElementType.METHOD; 023import static java.lang.annotation.RetentionPolicy.SOURCE; 024import static org.apiguardian.api.API.Status.STABLE; 025 026import java.lang.annotation.Retention; 027import java.lang.annotation.Target; 028 029import org.apiguardian.api.API; 030import org.tquadrat.foundation.annotation.ClassVersion; 031 032/** 033 * The container annotation for repeated 034 * {@link Text @Text} 035 * annotations. 036 * 037 * @extauthor Thomas Thrien - thomas.thrien@tquadrat.org 038 * @version $Id: Texts.java 1062 2023-09-25 23:11:41Z tquadrat $ 039 * @since 0.1.0 040 */ 041@SuppressWarnings( "NewClassNamingConvention" ) 042@Retention( SOURCE ) 043@Target( {FIELD, METHOD} ) 044@ClassVersion( sourceVersion = "$Id: Texts.java 1062 2023-09-25 23:11:41Z tquadrat $" ) 045@API( status = STABLE, since = "0.1.0" ) 046public @interface Texts 047{ 048 /*------------*\ 049 ====** Attributes **======================================================= 050 \*------------*/ 051 /** 052 * The repeated 053 * {@link Text @Text} 054 * annotations. 055 * 056 * @return The texts. 057 */ 058 public Text [] value(); 059} 060// annotation Texts 061 062/* 063 * End of File 064 */