1 //
2 // This file was generated by the Eclipse Implementation of JAXB, v3.0.0
3 // See https://eclipse-ee4j.github.io/jaxb-ri
4 // Any modifications to this file will be lost upon recompilation of the source schema.
5 // Generated on: 2023.11.01 at 04:26:55 PM EDT
6 //
7
8
9 package ca.uhn.hl7v2.testpanel.xsd;
10
11 import jakarta.xml.bind.annotation.XmlAccessType;
12 import jakarta.xml.bind.annotation.XmlAccessorType;
13 import jakarta.xml.bind.annotation.XmlAttribute;
14 import jakarta.xml.bind.annotation.XmlType;
15
16
17 /**
18 * <p>Java class for NamedJavaArgument complex type.
19 *
20 * <p>The following schema fragment specifies the expected content contained within this class.
21 *
22 * <pre>
23 * <complexType name="NamedJavaArgument">
24 * <complexContent>
25 * <extension base="{http://hl7api.sourceforge.net/hunit/hunit_tests.xsd}JavaArgument">
26 * <attribute name="name" type="{http://www.w3.org/2001/XMLSchema}string" />
27 * </extension>
28 * </complexContent>
29 * </complexType>
30 * </pre>
31 *
32 *
33 */
34 @XmlAccessorType(XmlAccessType.FIELD)
35 @XmlType(name = "NamedJavaArgument")
36 public class NamedJavaArgument
37 extends JavaArgument
38 {
39
40 @XmlAttribute(name = "name")
41 protected String name;
42
43 /**
44 * Gets the value of the name property.
45 *
46 * @return
47 * possible object is
48 * {@link String }
49 *
50 */
51 public String getName() {
52 return name;
53 }
54
55 /**
56 * Sets the value of the name property.
57 *
58 * @param value
59 * allowed object is
60 * {@link String }
61 *
62 */
63 public void setName(String value) {
64 this.name = value;
65 }
66
67 }