View Javadoc

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