Exemple #1
0
 /**
  * Return the type for this instruction. If the type has not been set, this method will return
  * null.
  */
 public Class getType() {
   String type = getTypeName();
   if (type == null) return null;
   return Strings.toClass(type, getClassLoader());
 }