@@ -143,52 +143,172 @@ public interface Gateway extends RichPlugin, Versioned {
143143
144144 // -- Gateway methods - services --
145145
146+ /**
147+ * Gets this application context's {@link AppEventService}.
148+ *
149+ * @return The {@link AppEventService} of this application context.
150+ */
146151 AppEventService appEvent ();
147152
153+ /**
154+ * Gets this application context's {@link AppService}.
155+ *
156+ * @return The {@link AppService} of this application context.
157+ */
148158 AppService app ();
149159
160+ /**
161+ * Gets this application context's {@link CommandService}.
162+ *
163+ * @return The {@link CommandService} of this application context.
164+ */
150165 CommandService command ();
151166
167+ /**
168+ * Gets this application context's {@link ConsoleService}.
169+ *
170+ * @return The {@link ConsoleService} of this application context.
171+ */
152172 ConsoleService console ();
153173
174+ /**
175+ * Gets this application context's {@link DisplayService}.
176+ *
177+ * @return The {@link DisplayService} of this application context.
178+ */
154179 DisplayService display ();
155180
181+ /**
182+ * Gets this application context's {@link EventHistory}.
183+ *
184+ * @return The {@link EventHistory} of this application context.
185+ */
156186 EventHistory eventHistory ();
157187
188+ /**
189+ * Gets this application context's {@link EventService}.
190+ *
191+ * @return The {@link EventService} of this application context.
192+ */
158193 EventService event ();
159194
195+ /**
196+ * Gets this application context's {@link IconService}.
197+ *
198+ * @return The {@link IconService} of this application context.
199+ */
160200 IconService icon ();
161201
202+ /**
203+ * Gets this application context's {@link InputService}.
204+ *
205+ * @return The {@link InputService} of this application context.
206+ */
162207 InputService input ();
163208
209+ /**
210+ * Gets this application context's {@link IOService}.
211+ *
212+ * @return The {@link IOService} of this application context.
213+ */
164214 IOService io ();
165215
216+ /**
217+ * Gets this application context's {@link LogService}.
218+ *
219+ * @return The {@link LogService} of this application context.
220+ */
166221 LogService log ();
167222
223+ /**
224+ * Gets this application context's {@link MenuService}.
225+ *
226+ * @return The {@link MenuService} of this application context.
227+ */
168228 MenuService menu ();
169229
230+ /**
231+ * Gets this application context's {@link ModuleService}.
232+ *
233+ * @return The {@link ModuleService} of this application context.
234+ */
170235 ModuleService module ();
171236
237+ /**
238+ * Gets this application context's {@link ObjectService}.
239+ *
240+ * @return The {@link ObjectService} of this application context.
241+ */
172242 ObjectService object ();
173243
244+ /**
245+ * Gets this application context's {@link OptionsService}.
246+ *
247+ * @return The {@link OptionsService} of this application context.
248+ */
174249 OptionsService options ();
175250
251+ /**
252+ * Gets this application context's {@link PlatformService}.
253+ *
254+ * @return The {@link PlatformService} of this application context.
255+ */
176256 PlatformService platform ();
177257
258+ /**
259+ * Gets this application context's {@link PluginService}.
260+ *
261+ * @return The {@link PluginService} of this application context.
262+ */
178263 PluginService plugin ();
179264
265+ /**
266+ * Gets this application context's {@link RecentFileService}.
267+ *
268+ * @return The {@link RecentFileService} of this application context.
269+ */
180270 RecentFileService recentFile ();
181271
272+ /**
273+ * Gets this application context's {@link ScriptService}.
274+ *
275+ * @return The {@link ScriptService} of this application context.
276+ */
182277 ScriptService script ();
183278
279+ /**
280+ * Gets this application context's {@link StatusService}.
281+ *
282+ * @return The {@link StatusService} of this application context.
283+ */
184284 StatusService status ();
185285
286+ /**
287+ * Gets this application context's {@link TextService}.
288+ *
289+ * @return The {@link TextService} of this application context.
290+ */
186291 TextService text ();
187292
293+ /**
294+ * Gets this application context's {@link ThreadService}.
295+ *
296+ * @return The {@link ThreadService} of this application context.
297+ */
188298 ThreadService thread ();
189299
300+ /**
301+ * Gets this application context's {@link ToolService}.
302+ *
303+ * @return The {@link ToolService} of this application context.
304+ */
190305 ToolService tool ();
191306
307+ /**
308+ * Gets this application context's {@link WidgetService}.
309+ *
310+ * @return The {@link WidgetService} of this application context.
311+ */
192312 WidgetService widget ();
193313
194314 // -- Gateway methods - application --
0 commit comments