/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
- package com.googlecode.ws.tester.xor.wsdl.model;
- /**
- * Created by IntelliJ IDEA.
- * User: pablo
- * Date: 2009-06-28
- * Time: 13:04:37
- */
- public class Annotation {
- private Documentation documentation;
- @Override
- public String toString() {
- final StringBuilder sb = new StringBuilder();
- sb.append("Annotation");
- sb.append("{documentation=").append(documentation);
- sb.append('}');
- return sb.toString();
- }
- public Documentation getDocumentation() {
- return documentation;
- }
- public void setDocumentation(Documentation documentation) {
- this.documentation = documentation;
- }
- }