mirror of
https://github.com/TrianguloY/LightningLauncher.git
synced 2025-01-13 20:01:34 +01:00
Removed 'LL.' mention from Event class.
Requires substitution getEvent_ -> getEvent
This commit is contained in:
parent
9176dc189c
commit
c03fdef970
2 changed files with 3 additions and 2 deletions
|
@ -16,6 +16,7 @@ javadoc \
|
|||
|
||||
sed -i 's/getEvent_/getEvent/g' html/reference/net/pierrox/lightning_launcher/script/api/Lightning.html
|
||||
sed -i 's/getEvent_/getEvent/g' html/reference/net/pierrox/lightning_launcher/script/api/LL.html
|
||||
sed -i 's/getEvent_/getEvent/g' html/reference/net/pierrox/lightning_launcher/script/api/Event.html
|
||||
sed -i 's/getEvent_/getEvent/g' html/reference/current.xml
|
||||
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@ import net.pierrox.lightning_launcher.views.item.ItemView;
|
|||
|
||||
/**
|
||||
* The event gather useful data dealing with the context of the event, such as which item caused the script to be executed, or what was the container at time of the event.
|
||||
* @see LL#getEvent().
|
||||
* @see Lightning#getEvent_().
|
||||
*/
|
||||
public class Event {
|
||||
|
||||
|
@ -120,7 +120,7 @@ public class Event {
|
|||
}
|
||||
|
||||
/**
|
||||
* Optional data that may have passed to this script when run from {@link LL#runScript(String, String)}.
|
||||
* Optional data that may have passed to this script when run from {@link Screen#runScript(String, String)}.
|
||||
*/
|
||||
public String getData() {
|
||||
return mData;
|
||||
|
|
Loading…
Reference in a new issue