View Javadoc
1 package org.hedwig.core; 2 3 /*** 4 * @author Keith Gaddis 5 * 6 *enclosing_type 7 */ 8 public class Attribute { 9 private boolean _required; 10 private String _name; 11 private String _value; 12 private long _headerId; 13 14 public Attribute(){ 15 super(); 16 } 17 /*** 18 * Returns the name. 19 * @return String 20 */ 21 public String getName() { 22 return _name; 23 } 24 25 /*** 26 * Returns the required. 27 * @return boolean 28 */ 29 public boolean isRequired() { 30 return _required; 31 } 32 33 /*** 34 * Returns the value. 35 * @return String 36 */ 37 public String getValue() { 38 return _value; 39 } 40 41 /*** 42 * Sets the name. 43 * @param name The name to set 44 */ 45 public void setName(String name) { 46 _name= name; 47 } 48 49 /*** 50 * Sets the required. 51 * @param required The required to set 52 */ 53 public void setRequired(boolean required) { 54 _required= required; 55 } 56 57 /*** 58 * Sets the value. 59 * @param value The value to set 60 */ 61 public void setValue(String value) { 62 _value= value; 63 } 64 65 }

This page was automatically generated by Maven