com.skillw.asahi.internal.function.lang.java.ExampleAction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Pouvoir Show documentation
Show all versions of Pouvoir Show documentation
Bukkit Script Engine Plugin.
package com.skillw.asahi.internal.function.lang.java;
import com.skillw.asahi.api.annotation.AsahiInfix;
import com.skillw.asahi.api.member.parser.infix.namespacing.BaseInfix;
@AsahiInfix
public class ExampleAction extends BaseInfix {
/**
* 使用方法:
* set str to "123"
* str printStr
*/
public ExampleAction() {
super(String.class, "common");
this.infix(new String[]{"printStr"}, (context, str) -> {
System.out.println(str);
return str;
});
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy