1 4 package com.openedit.modules.xml; 5 6 public class AttributeDesc 7 { 8 protected String fieldId; 9 protected String fieldDescription; 10 protected String fieldSize; 11 protected String fieldType; 12 13 public String getDescription() 14 { 15 return fieldDescription; 16 } 17 public void setDescription(String inDescription) 18 { 19 fieldDescription = inDescription; 20 } 21 public String getId() 22 { 23 return fieldId; 24 } 25 public void setId(String inId) 26 { 27 fieldId = inId; 28 } 29 public String getSize() 30 { 31 return fieldSize; 32 } 33 public void setSize(String inSize) 34 { 35 fieldSize = inSize; 36 } 37 public String getType() 38 { 39 return fieldType; 40 } 41 public void setType(String inType) 42 { 43 fieldType = inType; 44 } 45 46 } 47 | Popular Tags |