Package org.sgx.yuigwt.yuitest1

Source Code of org.sgx.yuigwt.yuitest1.Yui4GwtGalleryEntryPoint

package org.sgx.yuigwt.yuitest1;

import java.util.Map;

import org.sgx.yuigwt.yui.util.Util;
import org.sgx.yuigwt.yuitest1.gallery.Gallery;

import com.google.gwt.core.client.EntryPoint;

public class Yui4GwtGalleryEntryPoint implements EntryPoint {
  @Override
  public void onModuleLoad() {
    Map<String, String> urlParams = Util.parseUrlParams(Util.getCurrentAddressUrl());
    if(urlParams.containsKey("singleTest") && urlParams.containsKey("test")) {
      new GallerySingleTest(urlParams.get("test")).draw(); ;
    }
    else {
      new Gallery().draw();
    }
  }
 
 
}
TOP

Related Classes of org.sgx.yuigwt.yuitest1.Yui4GwtGalleryEntryPoint

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.