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