Class AntModel

java.lang.Object
org.citrusframework.model.testcase.core.AntModel

public class AntModel extends Object

Java-Klasse für AntActionType complex type.

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.


 <complexType name="AntActionType">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element ref="{http://www.citrusframework.org/schema/testcase}description" minOccurs="0"/>
         <element name="execute">
           <complexType>
             <complexContent>
               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
                 <attribute name="target" type="{http://www.w3.org/2001/XMLSchema}string" />
                 <attribute name="targets" type="{http://www.w3.org/2001/XMLSchema}string" />
               </restriction>
             </complexContent>
           </complexType>
         </element>
         <choice minOccurs="0">
           <element name="properties">
             <complexType>
               <complexContent>
                 <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
                   <sequence>
                     <element name="property" maxOccurs="unbounded" minOccurs="0">
                       <complexType>
                         <complexContent>
                           <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
                             <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
                             <attribute name="value" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
                           </restriction>
                         </complexContent>
                       </complexType>
                     </element>
                   </sequence>
                   <attribute name="file" type="{http://www.w3.org/2001/XMLSchema}string" />
                 </restriction>
               </complexContent>
             </complexType>
           </element>
         </choice>
       </sequence>
       <attribute name="build-file" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
       <attribute name="build-listener" type="{http://www.w3.org/2001/XMLSchema}string" />
     </restriction>
   </complexContent>
 </complexType>
 
  • Field Details

  • Constructor Details

    • AntModel

      public AntModel()
  • Method Details

    • getDescription

      public String getDescription()
      Ruft den Wert der description-Eigenschaft ab.
      Returns:
      possible object is String
    • setDescription

      public void setDescription(String value)
      Legt den Wert der description-Eigenschaft fest.
      Parameters:
      value - allowed object is String
    • getExecute

      public AntModel.Execute getExecute()
      Ruft den Wert der execute-Eigenschaft ab.
      Returns:
      possible object is AntModel.Execute
    • setExecute

      public void setExecute(AntModel.Execute value)
      Legt den Wert der execute-Eigenschaft fest.
      Parameters:
      value - allowed object is AntModel.Execute
    • getProperties

      public AntModel.Properties getProperties()
      Ruft den Wert der properties-Eigenschaft ab.
      Returns:
      possible object is AntModel.Properties
    • setProperties

      public void setProperties(AntModel.Properties value)
      Legt den Wert der properties-Eigenschaft fest.
      Parameters:
      value - allowed object is AntModel.Properties
    • getBuildFile

      public String getBuildFile()
      Ruft den Wert der buildFile-Eigenschaft ab.
      Returns:
      possible object is String
    • setBuildFile

      public void setBuildFile(String value)
      Legt den Wert der buildFile-Eigenschaft fest.
      Parameters:
      value - allowed object is String
    • getBuildListener

      public String getBuildListener()
      Ruft den Wert der buildListener-Eigenschaft ab.
      Returns:
      possible object is String
    • setBuildListener

      public void setBuildListener(String value)
      Legt den Wert der buildListener-Eigenschaft fest.
      Parameters:
      value - allowed object is String