costin      2002/12/26 10:06:17

  Added:       modeler/src/java/org/apache/commons/modeler/ant Arg.java
  Log:
  Refactored arg - it's used for invoke and constructor
  
  Revision  Changes    Path
  1.1                  
jakarta-commons/modeler/src/java/org/apache/commons/modeler/ant/Arg.java
  
  Index: Arg.java
  ===================================================================
  package org.apache.commons.modeler.ant;
  
  /**
   */
  public class Arg {
      String type;
      String value;
  
      public void setType( String type) {
          this.type=type;
      }
      public void setValue( String value ) {
          this.value=value;
      }
      public void addText( String text ) {
          this.value=text;
      }
  
      public String getValue() {
          return value;
      }
  
      public String getType() {
          return type;
      }
  }
  
  
  

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to