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

org.danilopianini.view.ExportForGUI Maven / Gradle / Ivy

There is a newer version: 0.6.1
Show newest version
/*******************************************************************************
 * Copyright (C) 2009, 2015, Danilo Pianini and contributors
 * listed in the project's build.gradle or pom.xml file.
 *
 * This file is distributed under the terms of the Apache License, version 2.0
 *******************************************************************************/
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 - 2024 Weber Informatics LLC | Privacy Policy