1 16 package com.google.gwt.dev.util.msg; 17 18 import com.google.gwt.core.ext.TreeLogger; 19 import com.google.gwt.core.ext.TreeLogger.Type; 20 21 24 public final class Message1Long extends Message1 { 25 26 public Message1Long(Type type, String fmt) { 27 super(type, fmt); 28 } 29 30 public TreeLogger branch(TreeLogger logger, long x, Throwable caught) { 31 Long xl = new Long (x); 32 return branch1(logger, xl, getFormatter(xl), caught); 33 } 34 35 public void log(TreeLogger logger, long x, Throwable caught) { 36 Long xl = new Long (x); 37 log1(logger, xl, getFormatter(xl), caught); 38 } 39 40 } 41 | Popular Tags |