1. package org.apache.commons.modeler.ant;
  2. /**
  3. */
  4. public class Arg {
  5. String type;
  6. String value;
  7. public void setType( String type) {
  8. this.type=type;
  9. }
  10. public void setValue( String value ) {
  11. this.value=value;
  12. }
  13. public void addText( String text ) {
  14. this.value=text;
  15. }
  16. public String getValue() {
  17. return value;
  18. }
  19. public String getType() {
  20. return type;
  21. }
  22. }