You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package cpw.mods.fml.common;
|
|
|
|
public class ClassNameUtils
|
|
{
|
|
public static String shortName(Class<?> clz)
|
|
{
|
|
String nm = clz.getName();
|
|
return nm.indexOf('.') > -1 ? nm.substring(nm.lastIndexOf('.')+1) : nm;
|
|
}
|
|
} |