Package com.google.tutorial

Source Code of com.google.tutorial.JsHelloUserMain

// com/google/tutorial/JsHelloUserMain.java

package com.google.tutorial;

import java.util.Locale;
import com.google.gxp.base.GxpContext;

public class JsHelloUserMain {
  public static void main(String[] args) throws Exception {
    GxpContext gc = new GxpContext(Locale.ENGLISH, true);
    JsHelloUser.write(System.out, gc, args[0]);
    System.out.println();
  }
}
TOP

Related Classes of com.google.tutorial.JsHelloUserMain

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.