1
2
3
4
5
6
7
8
9 package org.xmlhammer.model.tools;
10
11 import javax.xml.bind.annotation.XmlAccessType;
12 import javax.xml.bind.annotation.XmlAccessorType;
13 import javax.xml.bind.annotation.XmlType;
14
15
16 /***
17 * <p>Java class for tool complex type.
18 *
19 * <p>The following schema fragment specifies the expected content contained within this class.
20 *
21 * <pre>
22 * <complexType name="tool">
23 * <complexContent>
24 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
25 * </restriction>
26 * </complexContent>
27 * </complexType>
28 * </pre>
29 *
30 *
31 */
32 @XmlAccessorType(XmlAccessType.FIELD)
33 @XmlType(name = "tool")
34 public class Tool {
35
36
37 }