Package org.worldbank.transport.tamt.client.event

Examples of org.worldbank.transport.tamt.client.event.CancelRoadEvent


  @UiHandler("cancel")
  void onClickCancel(ClickEvent e) {
    if( currentRoadDetailId != null && currentRoadDetailId.indexOf("TEMP") != -1)
    {
      eventBus.fireEvent(new CancelRoadEvent(currentRoadDetailId));
    } else {
      refreshRoadDetails = true;
      fetchRoadDetails();
    }
  } 
View Full Code Here


            vertices.setText("Current polyline in RoadListing=" + n);
           
            String roadName = Window.prompt("Name this road", "");
            if( roadName == null)
            {
              eventBus.fireEvent(new CancelRoadEvent(p.getRoadDetailsId()));
              //refreshRoadDetails = true;
              //fetchRoadDetails();
             
            } else {
              name.setText(roadName);
View Full Code Here

TOP

Related Classes of org.worldbank.transport.tamt.client.event.CancelRoadEvent

Copyright © 2018 www.massapicom. 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.