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 Message3IntStringClass extends Message3 { 25 26 public Message3IntStringClass(Type type, String fmt) { 27 super(type, fmt); 28 } 29 30 public TreeLogger branch(TreeLogger logger, int x, String s, Class c, 31 Throwable caught) { 32 Integer xi = new Integer (x); 33 return branch3(logger, xi, s, c, getFormatter(xi), getFormatter(s), 34 getFormatter(c), caught); 35 } 36 37 public void log(TreeLogger logger, int x, String s, Class c, Throwable caught) { 38 Integer xi = new Integer (x); 39 log3(logger, xi, s, c, getFormatter(xi), getFormatter(s), getFormatter(c), 40 caught); 41 } 42 } 43 | Popular Tags |