org.danilopianini.view.ExportForGUI Maven / Gradle / Ivy
/*
* Copyright (C) 2010-2014, Danilo Pianini and contributors
* listed in the project's pom.xml file.
*
* This file is part of Alchemist, and is distributed under the terms of
* the GNU General Public License, with a linking exception, as described
* in the file LICENSE in the Alchemist distribution's top directory.
*/
package org.danilopianini.view;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* This annotation is exploited in order to identify the fields to load automatically in the {@link ObjectModFrame}.
*
* @author Danilo Pianini
*
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)
public @interface ExportForGUI {
/**
* The name which will be displayed on the graphical interface.
*/
String nameToExport();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy