org.nuiton.eugene.java.extension.ObjectModelAnnotationParameter Maven / Gradle / Ivy
package org.nuiton.eugene.java.extension;
/*
* #%L
* EUGene :: EUGene
* $Id: ObjectModelAnnotationParameter.java 1388 2014-07-06 18:10:59Z tchemit $
* $HeadURL: https://svn.nuiton.org/eugene/tags/eugene-2.13/eugene/src/main/java/org/nuiton/eugene/java/extension/ObjectModelAnnotationParameter.java $
* %%
* Copyright (C) 2004 - 2013 CodeLutin
* %%
* 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%
*/
/**
* Defines a annotation parameter.
*
* @author Tony Chemit - [email protected]
* @since 2.6.4
*/
public class ObjectModelAnnotationParameter {
protected final String name;
protected final Object value;
public ObjectModelAnnotationParameter(String name, Object value) {
this.name = name;
this.value = value;
}
public String getName() {
return name;
}
public Object getValue() {
return value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy