View Javadoc

1   //
2   // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs 
3   // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
4   // Any modifications to this file will be lost upon recompilation of the source schema. 
5   // Generated on: 2007.09.26 at 09:37:45 PM IST 
6   //
7   
8   
9   package org.xmlhammer.model.preferences;
10  
11  import javax.xml.bind.annotation.XmlAccessType;
12  import javax.xml.bind.annotation.XmlAccessorType;
13  import javax.xml.bind.annotation.XmlAttribute;
14  import javax.xml.bind.annotation.XmlRootElement;
15  import javax.xml.bind.annotation.XmlType;
16  
17  
18  /***
19   * <p>Java class for externalApplication element declaration.
20   * 
21   * <p>The following schema fragment specifies the expected content contained within this class.
22   * 
23   * <pre>
24   * &lt;element name="externalApplication">
25   *   &lt;complexType>
26   *     &lt;complexContent>
27   *       &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
28   *         &lt;attribute name="browserExtensions" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
29   *         &lt;attribute name="defaultCommand" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
30   *         &lt;attribute name="editorCommand" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
31   *       &lt;/restriction>
32   *     &lt;/complexContent>
33   *   &lt;/complexType>
34   * &lt;/element>
35   * </pre>
36   * 
37   * 
38   */
39  @XmlAccessorType(XmlAccessType.FIELD)
40  @XmlType(name = "")
41  @XmlRootElement(name = "externalApplication")
42  public class ExternalApplication {
43  
44      @XmlAttribute
45      protected String browserExtensions;
46      @XmlAttribute
47      protected String defaultCommand;
48      @XmlAttribute
49      protected String editorCommand;
50  
51      /***
52       * Gets the value of the browserExtensions property.
53       * 
54       * @return
55       *     possible object is
56       *     {@link String }
57       *     
58       */
59      public String getBrowserExtensions() {
60          return browserExtensions;
61      }
62  
63      /***
64       * Sets the value of the browserExtensions property.
65       * 
66       * @param value
67       *     allowed object is
68       *     {@link String }
69       *     
70       */
71      public void setBrowserExtensions(String value) {
72          this.browserExtensions = value;
73      }
74  
75      /***
76       * Gets the value of the defaultCommand property.
77       * 
78       * @return
79       *     possible object is
80       *     {@link String }
81       *     
82       */
83      public String getDefaultCommand() {
84          return defaultCommand;
85      }
86  
87      /***
88       * Sets the value of the defaultCommand property.
89       * 
90       * @param value
91       *     allowed object is
92       *     {@link String }
93       *     
94       */
95      public void setDefaultCommand(String value) {
96          this.defaultCommand = value;
97      }
98  
99      /***
100      * Gets the value of the editorCommand property.
101      * 
102      * @return
103      *     possible object is
104      *     {@link String }
105      *     
106      */
107     public String getEditorCommand() {
108         return editorCommand;
109     }
110 
111     /***
112      * Sets the value of the editorCommand property.
113      * 
114      * @param value
115      *     allowed object is
116      *     {@link String }
117      *     
118      */
119     public void setEditorCommand(String value) {
120         this.editorCommand = value;
121     }
122 
123 }