net.sf.jasperreports.functions.annotations.FunctionParameterBean Maven / Gradle / Ivy
/*
* JasperReports - Free Java Reporting Library.
* Copyright (C) 2001 - 2013 Jaspersoft Corporation. All rights reserved.
* http://www.jaspersoft.com
*
* Unless you have purchased a commercial license agreement from Jaspersoft,
* the following license terms apply:
*
* This program is part of JasperReports.
*
* JasperReports 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.
*
* JasperReports 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with JasperReports. If not, see .
*/
package net.sf.jasperreports.functions.annotations;
/**
* @author sanda zaharia ([email protected])
* @version $Id: FunctionParameterBean.java 6184 2013-05-27 10:24:51Z shertage $
*/
public class FunctionParameterBean
{
/**
*
*/
private String id;
private String name;
private String description;
private Class> type;
private Boolean required;
/**
*
*/
public FunctionParameterBean(
String id,
String name,
String description,
Class> type,
Boolean required
) {
this.id = id;
this.name = name;
this.description = description;
this.type = type;
this.required = required;
}
public String getId() {
return this.id;
}
public void setId(String id) {
this.id = id;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public Class> getType() {
return type;
}
public void setType(Class> type) {
this.type = type;
}
public Boolean getRequired() {
return required;
}
public void setRequired(Boolean required) {
this.required = required;
}
}