/* */ package com.ibm.icu.util; /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ public class Output<T> /* */ { /* */ public T value; /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ public String toString() /* */ { /* 29 */ return this.value == null ? "null" : this.value.toString(); /* */ } /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ public Output() {} /* */ /* */ /* */ /* */ /* */ /* */ /* */ /* */ public Output(T value) /* */ { /* 48 */ this.value = value; /* */ } /* */ } /* Location: C:\Users\Ethan\Desktop\FontZip\FontTool\sfnttool.jar!\com\ibm\icu\util\Output.class * Java compiler version: 5 (49.0) * JD-Core Version: 0.7.1 */