Removed 'LL.' mention from Event class.

Requires substitution getEvent_ -> getEvent
This commit is contained in:
TrianguloY 2019-03-11 18:40:40 +01:00
parent 9176dc189c
commit c03fdef970
2 changed files with 3 additions and 2 deletions

View file

@ -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

View file

@ -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;