Package com.google.speedtracer.client.model

Examples of com.google.speedtracer.client.model.CustomEvent$TypeRegisteringVisitor


    }

    if (CustomEvent.isCustomEvent(e.getType())) {
      // Render key-value pairs for the custom event.
      // Simply iterate over the custom data on the CustomEvent.
      CustomEvent customEvent = e.cast();
      DataBag customData = customEvent.getCustomData();
      customData.iterate(new IterationCallback() {
        public void onIteration(String key, String value) {
          details.put(key, new StringCellRenderer(value));
        }
      });
View Full Code Here

TOP

Related Classes of com.google.speedtracer.client.model.CustomEvent$TypeRegisteringVisitor

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.