ObjectFactory.java
2.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.appmon.xml;
import com.adobe.appmon.xml.AbortMessageType;
import com.adobe.appmon.xml.AcquiredWindow;
import com.adobe.appmon.xml.Application;
import com.adobe.appmon.xml.Dialogs;
import com.adobe.appmon.xml.ExpectedWindow;
import com.adobe.appmon.xml.Index;
import com.adobe.appmon.xml.Keyname;
import com.adobe.appmon.xml.Keys;
import com.adobe.appmon.xml.MenuBar;
import com.adobe.appmon.xml.Modifier;
import com.adobe.appmon.xml.Pause;
import com.adobe.appmon.xml.Selection;
import com.adobe.appmon.xml.StepType;
import com.adobe.appmon.xml.VirtualInput;
import com.adobe.appmon.xml.Window;
import com.adobe.appmon.xml.WindowList;
import javax.xml.bind.annotation.XmlRegistry;
@XmlRegistry
public class ObjectFactory {
public Modifier createModifier() {
return new Modifier();
}
public Index createIndex() {
return new Index();
}
public AcquiredWindow createAcquiredWindow() {
return new AcquiredWindow();
}
public MenuBar createMenuBar() {
return new MenuBar();
}
public Keys createKeys() {
return new Keys();
}
public ExpectedWindow createExpectedWindow() {
return new ExpectedWindow();
}
public Application createApplication() {
return new Application();
}
public Keyname createKeyname() {
return new Keyname();
}
public Window createWindow() {
return new Window();
}
public AbortMessageType createAbortMessageType() {
return new AbortMessageType();
}
public StepType createStepType() {
return new StepType();
}
public Dialogs createDialogs() {
return new Dialogs();
}
public VirtualInput createVirtualInput() {
return new VirtualInput();
}
public Selection createSelection() {
return new Selection();
}
public Pause createPause() {
return new Pause();
}
public WindowList createWindowList() {
return new WindowList();
}
}