|
3 | 3 | // THIS FILE IS GENERATED WHILE COMPILING. DO NOT CHANGE ANYTHING HERE!
|
4 | 4 |
|
5 | 5 | import org.codeoverflow.chatoverflow.api.io.input.FileInput;
|
6 |
| -import org.codeoverflow.chatoverflow.api.io.input.SampleInput; |
7 | 6 | import org.codeoverflow.chatoverflow.api.io.input.SerialInput;
|
8 |
| -import org.codeoverflow.chatoverflow.api.io.input.chat.DiscordChatInput; |
9 |
| -import org.codeoverflow.chatoverflow.api.io.input.chat.MockUpChatInput; |
10 |
| -import org.codeoverflow.chatoverflow.api.io.input.chat.TwitchChatInput; |
| 7 | +import org.codeoverflow.chatoverflow.api.io.input.SampleInput; |
11 | 8 | import org.codeoverflow.chatoverflow.api.io.input.event.TipeeestreamEventInput;
|
| 9 | +import org.codeoverflow.chatoverflow.api.io.input.chat.TwitchChatInput; |
| 10 | +import org.codeoverflow.chatoverflow.api.io.input.chat.MockUpChatInput; |
| 11 | +import org.codeoverflow.chatoverflow.api.io.input.chat.DiscordChatInput; |
12 | 12 |
|
13 | 13 | // THIS FILE IS GENERATED WHILE COMPILING. DO NOT CHANGE ANYTHING HERE!
|
14 | 14 |
|
@@ -46,135 +46,135 @@ public Requirement<FileInput> file(String uniqueRequirementId) {
|
46 | 46 | }
|
47 | 47 |
|
48 | 48 | /**
|
49 |
| - * Requires a SampleInput which has to be specified by the user. |
| 49 | + * Requires a connection with a device connected to a serial port (an Arduino for example) which has to be specified by the user. |
50 | 50 | *
|
51 | 51 | * @param uniqueRequirementId a plugin unique identifier which is stored for your plugin
|
52 | 52 | * @param displayName a string to display to the user while setting your requirement
|
53 | 53 | * @param isOptional true if this requirement is optional, false if mandatory
|
54 | 54 | * @return the requirement object. Use the get() method only at runtime!
|
55 | 55 | */
|
56 |
| - public Requirement<SampleInput> sample(String uniqueRequirementId, String displayName, boolean isOptional) { |
57 |
| - return requirements.requireInput(uniqueRequirementId, displayName, isOptional, SampleInput.class); |
| 56 | + public Requirement<SerialInput> serial(String uniqueRequirementId, String displayName, boolean isOptional) { |
| 57 | + return requirements.requireInput(uniqueRequirementId, displayName, isOptional, SerialInput.class); |
58 | 58 | }
|
59 | 59 |
|
60 | 60 | /**
|
61 |
| - * Requires a SampleInput which has to be specified by the user. |
| 61 | + * Requires a connection with a device connected to a serial port (an Arduino for example) which has to be specified by the user. |
62 | 62 | *
|
63 | 63 | * @param uniqueRequirementId a plugin unique identifier which is stored for your plugin
|
64 | 64 | * @return the requirement object. Use the get() method only at runtime!
|
65 | 65 | */
|
66 |
| - public Requirement<SampleInput> sample(String uniqueRequirementId) { |
67 |
| - return requirements.requireInput(uniqueRequirementId, "Sample", false, SampleInput.class); |
| 66 | + public Requirement<SerialInput> serial(String uniqueRequirementId) { |
| 67 | + return requirements.requireInput(uniqueRequirementId, "Serial", false, SerialInput.class); |
68 | 68 | }
|
69 | 69 |
|
70 | 70 | /**
|
71 |
| - * Requires a connection with a device connected to a serial port (an Arduino for example) which has to be specified by the user. |
| 71 | + * Requires a SampleInput which has to be specified by the user. |
72 | 72 | *
|
73 | 73 | * @param uniqueRequirementId a plugin unique identifier which is stored for your plugin
|
74 | 74 | * @param displayName a string to display to the user while setting your requirement
|
75 | 75 | * @param isOptional true if this requirement is optional, false if mandatory
|
76 | 76 | * @return the requirement object. Use the get() method only at runtime!
|
77 | 77 | */
|
78 |
| - public Requirement<SerialInput> serial(String uniqueRequirementId, String displayName, boolean isOptional) { |
79 |
| - return requirements.requireInput(uniqueRequirementId, displayName, isOptional, SerialInput.class); |
| 78 | + public Requirement<SampleInput> sample(String uniqueRequirementId, String displayName, boolean isOptional) { |
| 79 | + return requirements.requireInput(uniqueRequirementId, displayName, isOptional, SampleInput.class); |
80 | 80 | }
|
81 | 81 |
|
82 | 82 | /**
|
83 |
| - * Requires a connection with a device connected to a serial port (an Arduino for example) which has to be specified by the user. |
| 83 | + * Requires a SampleInput which has to be specified by the user. |
84 | 84 | *
|
85 | 85 | * @param uniqueRequirementId a plugin unique identifier which is stored for your plugin
|
86 | 86 | * @return the requirement object. Use the get() method only at runtime!
|
87 | 87 | */
|
88 |
| - public Requirement<SerialInput> serial(String uniqueRequirementId) { |
89 |
| - return requirements.requireInput(uniqueRequirementId, "Serial", false, SerialInput.class); |
| 88 | + public Requirement<SampleInput> sample(String uniqueRequirementId) { |
| 89 | + return requirements.requireInput(uniqueRequirementId, "Sample", false, SampleInput.class); |
90 | 90 | }
|
91 | 91 |
|
92 | 92 | /**
|
93 |
| - * Requires a discord chat bot which has to be specified by the user. |
| 93 | + * Requires a login for the TipeeeStream api which has to be specified by the user. |
94 | 94 | *
|
95 | 95 | * @param uniqueRequirementId a plugin unique identifier which is stored for your plugin
|
96 | 96 | * @param displayName a string to display to the user while setting your requirement
|
97 | 97 | * @param isOptional true if this requirement is optional, false if mandatory
|
98 | 98 | * @return the requirement object. Use the get() method only at runtime!
|
99 | 99 | */
|
100 |
| - public Requirement<DiscordChatInput> discordChat(String uniqueRequirementId, String displayName, boolean isOptional) { |
101 |
| - return requirements.requireInput(uniqueRequirementId, displayName, isOptional, DiscordChatInput.class); |
| 100 | + public Requirement<TipeeestreamEventInput> tipeeeStream(String uniqueRequirementId, String displayName, boolean isOptional) { |
| 101 | + return requirements.requireInput(uniqueRequirementId, displayName, isOptional, TipeeestreamEventInput.class); |
102 | 102 | }
|
103 | 103 |
|
104 | 104 | /**
|
105 |
| - * Requires a discord chat bot which has to be specified by the user. |
| 105 | + * Requires a login for the TipeeeStream api which has to be specified by the user. |
106 | 106 | *
|
107 | 107 | * @param uniqueRequirementId a plugin unique identifier which is stored for your plugin
|
108 | 108 | * @return the requirement object. Use the get() method only at runtime!
|
109 | 109 | */
|
110 |
| - public Requirement<DiscordChatInput> discordChat(String uniqueRequirementId) { |
111 |
| - return requirements.requireInput(uniqueRequirementId, "Discord Chat", false, DiscordChatInput.class); |
| 110 | + public Requirement<TipeeestreamEventInput> tipeeeStream(String uniqueRequirementId) { |
| 111 | + return requirements.requireInput(uniqueRequirementId, "Tipeeestream Event", false, TipeeestreamEventInput.class); |
112 | 112 | }
|
113 | 113 |
|
114 | 114 | /**
|
115 |
| - * Requires a MockUpChatInput which has to be specified by the user. |
| 115 | + * Requires a TwitchChatInput which has to be specified by the user. |
116 | 116 | *
|
117 | 117 | * @param uniqueRequirementId a plugin unique identifier which is stored for your plugin
|
118 | 118 | * @param displayName a string to display to the user while setting your requirement
|
119 | 119 | * @param isOptional true if this requirement is optional, false if mandatory
|
120 | 120 | * @return the requirement object. Use the get() method only at runtime!
|
121 | 121 | */
|
122 |
| - public Requirement<MockUpChatInput> mockUpChat(String uniqueRequirementId, String displayName, boolean isOptional) { |
123 |
| - return requirements.requireInput(uniqueRequirementId, displayName, isOptional, MockUpChatInput.class); |
| 122 | + public Requirement<TwitchChatInput> twitchChat(String uniqueRequirementId, String displayName, boolean isOptional) { |
| 123 | + return requirements.requireInput(uniqueRequirementId, displayName, isOptional, TwitchChatInput.class); |
124 | 124 | }
|
125 | 125 |
|
126 | 126 | /**
|
127 |
| - * Requires a MockUpChatInput which has to be specified by the user. |
| 127 | + * Requires a TwitchChatInput which has to be specified by the user. |
128 | 128 | *
|
129 | 129 | * @param uniqueRequirementId a plugin unique identifier which is stored for your plugin
|
130 | 130 | * @return the requirement object. Use the get() method only at runtime!
|
131 | 131 | */
|
132 |
| - public Requirement<MockUpChatInput> mockUpChat(String uniqueRequirementId) { |
133 |
| - return requirements.requireInput(uniqueRequirementId, "Mock Up Chat", false, MockUpChatInput.class); |
| 132 | + public Requirement<TwitchChatInput> twitchChat(String uniqueRequirementId) { |
| 133 | + return requirements.requireInput(uniqueRequirementId, "Twitch Chat", false, TwitchChatInput.class); |
134 | 134 | }
|
135 | 135 |
|
136 | 136 | /**
|
137 |
| - * Requires a TwitchChatInput which has to be specified by the user. |
| 137 | + * Requires a MockUpChatInput which has to be specified by the user. |
138 | 138 | *
|
139 | 139 | * @param uniqueRequirementId a plugin unique identifier which is stored for your plugin
|
140 | 140 | * @param displayName a string to display to the user while setting your requirement
|
141 | 141 | * @param isOptional true if this requirement is optional, false if mandatory
|
142 | 142 | * @return the requirement object. Use the get() method only at runtime!
|
143 | 143 | */
|
144 |
| - public Requirement<TwitchChatInput> twitchChat(String uniqueRequirementId, String displayName, boolean isOptional) { |
145 |
| - return requirements.requireInput(uniqueRequirementId, displayName, isOptional, TwitchChatInput.class); |
| 144 | + public Requirement<MockUpChatInput> mockUpChat(String uniqueRequirementId, String displayName, boolean isOptional) { |
| 145 | + return requirements.requireInput(uniqueRequirementId, displayName, isOptional, MockUpChatInput.class); |
146 | 146 | }
|
147 | 147 |
|
148 | 148 | /**
|
149 |
| - * Requires a TwitchChatInput which has to be specified by the user. |
| 149 | + * Requires a MockUpChatInput which has to be specified by the user. |
150 | 150 | *
|
151 | 151 | * @param uniqueRequirementId a plugin unique identifier which is stored for your plugin
|
152 | 152 | * @return the requirement object. Use the get() method only at runtime!
|
153 | 153 | */
|
154 |
| - public Requirement<TwitchChatInput> twitchChat(String uniqueRequirementId) { |
155 |
| - return requirements.requireInput(uniqueRequirementId, "Twitch Chat", false, TwitchChatInput.class); |
| 154 | + public Requirement<MockUpChatInput> mockUpChat(String uniqueRequirementId) { |
| 155 | + return requirements.requireInput(uniqueRequirementId, "Mock Up Chat", false, MockUpChatInput.class); |
156 | 156 | }
|
157 | 157 |
|
158 | 158 | /**
|
159 |
| - * Requires a login for the TipeeeStream api which has to be specified by the user. |
| 159 | + * Requires a discord chat bot which has to be specified by the user. |
160 | 160 | *
|
161 | 161 | * @param uniqueRequirementId a plugin unique identifier which is stored for your plugin
|
162 | 162 | * @param displayName a string to display to the user while setting your requirement
|
163 | 163 | * @param isOptional true if this requirement is optional, false if mandatory
|
164 | 164 | * @return the requirement object. Use the get() method only at runtime!
|
165 | 165 | */
|
166 |
| - public Requirement<TipeeestreamEventInput> tipeeeStream(String uniqueRequirementId, String displayName, boolean isOptional) { |
167 |
| - return requirements.requireInput(uniqueRequirementId, displayName, isOptional, TipeeestreamEventInput.class); |
| 166 | + public Requirement<DiscordChatInput> discordChat(String uniqueRequirementId, String displayName, boolean isOptional) { |
| 167 | + return requirements.requireInput(uniqueRequirementId, displayName, isOptional, DiscordChatInput.class); |
168 | 168 | }
|
169 | 169 |
|
170 | 170 | /**
|
171 |
| - * Requires a login for the TipeeeStream api which has to be specified by the user. |
| 171 | + * Requires a discord chat bot which has to be specified by the user. |
172 | 172 | *
|
173 | 173 | * @param uniqueRequirementId a plugin unique identifier which is stored for your plugin
|
174 | 174 | * @return the requirement object. Use the get() method only at runtime!
|
175 | 175 | */
|
176 |
| - public Requirement<TipeeestreamEventInput> tipeeeStream(String uniqueRequirementId) { |
177 |
| - return requirements.requireInput(uniqueRequirementId, "Tipeeestream Event", false, TipeeestreamEventInput.class); |
| 176 | + public Requirement<DiscordChatInput> discordChat(String uniqueRequirementId) { |
| 177 | + return requirements.requireInput(uniqueRequirementId, "Discord Chat", false, DiscordChatInput.class); |
178 | 178 | }
|
179 | 179 |
|
180 | 180 |
|
|
0 commit comments