add getClassName()

git-svn-id: https://wala.svn.sourceforge.net/svnroot/wala/trunk@535 f5eafffb-2e1d-0410-98e4-8ec43c5233c4
This commit is contained in:
sjfink 2007-01-08 17:20:43 +00:00
parent ee06427675
commit ebd6e0e151
1 changed files with 7 additions and 0 deletions

View File

@ -336,4 +336,11 @@ public final class TypeName {
public Atom getPackage() {
return key.packageName;
}
/**
* @return the Atom naming the class for this type (without package)
*/
public Atom getClassName() {
return key.className;
}
}