1 19 20 package org.netbeans.modules.j2ee.sun.ws7.nodes; 21 22 public class AttributeInfo { 23 private String name; 24 private String type; 25 private String description; 26 private boolean readable; 27 private boolean writable; 28 private boolean bool; 29 30 public AttributeInfo(String name, String type, String description, 31 boolean readable, boolean writable, 32 boolean bool) { 33 this.name = name; 34 this.type = type; 35 this.description = description; 36 this.readable = readable; 37 this.writable = writable; 38 this.bool = bool; 39 } 40 41 46 public String getName() { 47 return this.name; 48 } 49 50 55 public void setName(String argName){ 56 this.name = argName; 57 } 58 59 64 public String getType() { 65 return this.type; 66 } 67 68 73 public void setType(String argType){ 74 this.type = argType; 75 } 76 77 82 public String getDescription() { 83 return this.description; 84 } 85 86 91 public void setDescription(String argDescription){ 92 this.description = argDescription; 93 } 94 95 100 public boolean isReadable() { 101 return this.readable; 102 } 103 104 109 public void setReadable(boolean argReadable){ 110 this.readable = argReadable; 111 } 112 113 118 public boolean isWritable() { 119 return this.writable; 120 } 121 122 127 public void setWritable(boolean argWritable){ 128 this.writable = argWritable; 129 } 130 131 136 public boolean isBool() { 137 return this.bool; 138 } 139 140 145 public void setBool(boolean argBool){ 146 this.bool = argBool; 147 } 148 } 149 | Popular Tags |