com.j256.springrequestdoclet.collector.FieldInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-request-doclet Show documentation
Show all versions of spring-request-doclet Show documentation
Spring Web Request Doclet Documentation Generator
package com.j256.springrequestdoclet.collector;
/**
* Information about an object fields that help us
*
* @author graywatson
*/
public class FieldInfo {
private final String fieldName;
private final String typeName;
private final String javaDoc;
public FieldInfo(String fieldName, String typeName, String javaDoc) {
this.fieldName = fieldName;
this.typeName = typeName;
this.javaDoc = javaDoc;
}
public String getFieldName() {
return fieldName;
}
public String getTypeName() {
return typeName;
}
public String getJavaDoc() {
return javaDoc;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy