/ws-tester-xor/ws-tester-xor-engine/src/main/java/com/googlecode/ws/tester/xor/engine/Element.java
http://ws-tester.googlecode.com/ · Java · 61 lines · 44 code · 11 blank · 6 comment · 0 complexity · c65de65403b87d36742dd511ec9f8ee9 MD5 · raw file
- package com.googlecode.ws.tester.xor.engine;
- /**
- * Created by IntelliJ IDEA.
- * User: pablo
- * Date: 2009-06-09
- * Time: 19:08:59
- */
- public class Element {
- private String namespaces;
- private String root;
- private String className;
- private String collection;
- public Element() {
- }
- public String getNamespaces() {
- return namespaces;
- }
- public void setNamespaces(String namespaces) {
- this.namespaces = namespaces;
- }
- public String getRoot() {
- return root;
- }
- public void setRoot(String root) {
- this.root = root;
- }
- public String getClassName() {
- return className;
- }
- public void setClassName(String className) {
- this.className = className;
- }
- public String getCollection() {
- return collection;
- }
- public void setCollection(String collection) {
- this.collection = collection;
- }
- @Override
- public String toString() {
- final StringBuilder sb = new StringBuilder();
- sb.append("Element");
- sb.append("{namespaces='").append(namespaces).append('\'');
- sb.append(", root='").append(root).append('\'');
- sb.append(", className='").append(className).append('\'');
- sb.append(", collection='").append(collection).append('\'');
- sb.append('}');
- return sb.toString();
- }
- }