KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > commons > modeler > ant > Arg


1 package org.apache.commons.modeler.ant;
2
3 /**
4  */

5 public class Arg {
6     String JavaDoc type;
7     String JavaDoc value;
8
9     public void setType( String JavaDoc type) {
10         this.type=type;
11     }
12     public void setValue( String JavaDoc value ) {
13         this.value=value;
14     }
15     public void addText( String JavaDoc text ) {
16         this.value=text;
17     }
18
19     public String JavaDoc getValue() {
20         return value;
21     }
22
23     public String JavaDoc getType() {
24         return type;
25     }
26 }
27
Popular Tags