Examples of HelloApp


Examples of kickstart.HelloApp

*/
public class Main extends WebSite {

    @Override
    public void init() {
        add(new HelloApp());
    }
View Full Code Here

Examples of net.solosky.maplefetion.demo.robot.app.HelloApp

    public static void main(String[] args)
    {
      if(args.length>=2){
        FetionRobot sms = new FetionRobot();
        sms.registerGateway(new FetionGateway(Long.parseLong(args[0]),args[1]));
        sms.registerApp(new HelloApp());
        sms.registerApp(new WeatherApp());
        sms.start();
        sms.readCmd();
      }else{
        System.out.println("参数不正确, 请使用 java net.solosky.maplefetion.demo.robot.FetionRobot 机器人手机号 密码");
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.