com.thoughtworks.qdox.model.BeanProperty Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.apache.servicemix.bundles.qdox
Show all versions of org.apache.servicemix.bundles.qdox
This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.
The newest version!
package com.thoughtworks.qdox.model;
/**
*
* @author Aslak Hellesøy
* @version $Revision: 1.4 $
*/
public class BeanProperty {
private final String name;
private JavaMethod accessor;
private JavaMethod mutator;
private Type type;
public BeanProperty(String name) {
this.name = name;
}
public String getName() {
return name;
}
public void setType(Type type) {
this.type = type;
}
public Type getType() {
return type;
}
public JavaMethod getAccessor() {
return accessor;
}
public void setAccessor(JavaMethod accessor) {
this.accessor = accessor;
}
public JavaMethod getMutator() {
return mutator;
}
public void setMutator(JavaMethod mutator) {
this.mutator = mutator;
}
}