Your browser does not support JavaScript and this site utilizes JavaScript to build content and provide links to additional information. You should either enable JavaScript in your browser settings or use a browser that supports JavaScript in order to take full advantage of this site.
1 42 43 package org.jfree.xml.generator.model; 44 45 55 public class ManualMappingInfo { 56 57 58 private Class baseClass; 59 60 61 private Class readHandler; 62 63 64 private Class writeHandler; 65 66 67 private Comments comments; 68 69 70 private String source; 71 72 79 public ManualMappingInfo(final Class baseClass, final Class readHandler, final Class writeHandler) { 80 this.baseClass = baseClass; 81 this.readHandler = readHandler; 82 this.writeHandler = writeHandler; 83 } 84 85 90 public Class getBaseClass() { 91 return this.baseClass; 92 } 93 94 99 public Class getReadHandler() { 100 return this.readHandler; 101 } 102 103 108 public Class getWriteHandler() { 109 return this.writeHandler; 110 } 111 112 117 public Comments getComments() { 118 return this.comments; 119 } 120 121 126 public void setComments(final Comments comments) { 127 this.comments = comments; 128 } 129 130 135 public String getSource() { 136 return this.source; 137 } 138 139 144 public void setSource(final String source) { 145 this.source = source; 146 } 147 } 148
| Popular Tags
|