1 42 43 package org.jfree.xml.generator.model; 44 45 48 public class KeyDescription { 49 50 51 private TypeInfo[] parameters; 52 53 54 private Comments comments; 55 56 61 public KeyDescription(final TypeInfo[] parameters) { 62 this.parameters = parameters; 63 } 64 65 70 public TypeInfo[] getParameters() { 71 return this.parameters; 72 } 73 74 79 public Comments getComments() { 80 return this.comments; 81 } 82 83 88 public void setComments(final Comments comments) { 89 this.comments = comments; 90 } 91 } 92 | Popular Tags |