org.springframework.binding.support
Class AnnotationAwareBeanPropertyAccessStrategyTests.TestBean

Show UML class diagram
java.lang.Object
  extended by org.springframework.binding.support.AnnotationAwareBeanPropertyAccessStrategyTests.TestBean
Enclosing class:
AnnotationAwareBeanPropertyAccessStrategyTests

public static class AnnotationAwareBeanPropertyAccessStrategyTests.TestBean
extends Object


Constructor Summary
AnnotationAwareBeanPropertyAccessStrategyTests.TestBean()
           
 
Method Summary
 double getAge()
           
 String getDescription()
           
 String getName()
           
 int getRank()
           
 void setAge(double age)
           
 void setDescription(String description)
           
 void setName(String name)
           
 void setRank(int rank)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

AnnotationAwareBeanPropertyAccessStrategyTests.TestBean

public AnnotationAwareBeanPropertyAccessStrategyTests.TestBean()
Method Detail

getName

@NoValueAnnotation
public String getName()

setName

public void setName(String name)

getAge

@SingleValueAnnotation(value="The Age Method")
public double getAge()

setAge

@NoValueAnnotation
public void setAge(double age)

setRank

@MultiValueAnnotation(name="Second Test Name",
                      age=30.0,
                      rank=5)
@SingleValueAnnotation(value="The Rank Method")
public void setRank(int rank)

getRank

@MultiValueAnnotation(name="First Test Name",
                      age=24.5,
                      rank=10)
@NoValueAnnotation
public int getRank()

getDescription

public String getDescription()

setDescription

public void setDescription(String description)


Copyright © 2004-2009 The Spring Framework. All Rights Reserved.