Package com.thoughtworks.qdox.model
Class BeanProperty
- java.lang.Object
-
- com.thoughtworks.qdox.model.BeanProperty
-
public class BeanProperty extends java.lang.Object
- Version:
- $Revision$
- Author:
- Aslak Hellesøy
-
-
Constructor Summary
Constructors Constructor Description BeanProperty(java.lang.String name)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description JavaMethod
getAccessor()
JavaMethod
getMutator()
java.lang.String
getName()
Type
getType()
void
setAccessor(JavaMethod accessor)
void
setMutator(JavaMethod mutator)
void
setType(Type type)
-
-
-
Method Detail
-
getName
public java.lang.String getName()
-
setType
public void setType(Type type)
-
getType
public Type getType()
-
getAccessor
public JavaMethod getAccessor()
-
setAccessor
public void setAccessor(JavaMethod accessor)
-
getMutator
public JavaMethod getMutator()
-
setMutator
public void setMutator(JavaMethod mutator)
-
-