/ws-tester-xor/ws-tester-xor-wsdl/src/main/java/com/googlecode/ws/tester/xor/wsdl/model/Annotation.java

http://ws-tester.googlecode.com/ · Java · 28 lines · 18 code · 4 blank · 6 comment · 0 complexity · 65c96e2ffe3eb2eb25ec1d44cdc55797 MD5 · raw file

  1. package com.googlecode.ws.tester.xor.wsdl.model;
  2. /**
  3. * Created by IntelliJ IDEA.
  4. * User: pablo
  5. * Date: 2009-06-28
  6. * Time: 13:04:37
  7. */
  8. public class Annotation {
  9. private Documentation documentation;
  10. @Override
  11. public String toString() {
  12. final StringBuilder sb = new StringBuilder();
  13. sb.append("Annotation");
  14. sb.append("{documentation=").append(documentation);
  15. sb.append('}');
  16. return sb.toString();
  17. }
  18. public Documentation getDocumentation() {
  19. return documentation;
  20. }
  21. public void setDocumentation(Documentation documentation) {
  22. this.documentation = documentation;
  23. }
  24. }