Lines Matching refs:interface
3 …s can expect to be in SysUI, then the portion of code controlled by the interface can be iterated …
13 …dding a plugin hook to SysUI is to define the interface layer between the plugin and SysUI. This …
15 …systemui.plugin or sub-packages. The main interface (entry point) for the plugin should extend th…
18 …interface changes in an incompatible way, the version should be incremented. Incompatible changes…
24 public interface MyPlugin extends Plugin {
33 To actually listen for plugins, you implement a plugin listener that has the following interface.
36 public interface PluginListener<T extends Plugin> {
78 …action for the plugin, and set the name to point at the class that implements the plugin interface.
96 ### Implementing the interface
98 Implementing the interface is generally pretty straightforward. The version of the plugin should t…
213 …interface version is specified. Whenever a plugin is detected, the first thing that is done after…