public interface ILanguageNames
Modifier and Type | Method and Description |
---|---|
String |
getClassName(String vmname,
String vmsignature,
String vmsuperclass,
String[] vminterfaces)
Calculates the language specific name of a class.
|
String |
getMethodName(String vmclassname,
String vmmethodname,
String vmdesc,
String vmsignature)
Calculates the language specific name of a method.
|
String |
getPackageName(String vmname)
Calculates the language specific name of a package.
|
String |
getQualifiedClassName(String vmname)
Calculates the language specific qualified name of a class.
|
String |
getQualifiedMethodName(String vmclassname,
String vmmethodname,
String vmdesc,
String vmsignature)
Calculates the language specific fully qualified name of a method.
|
String getPackageName(String vmname)
vmname
- vm name of a packageString getClassName(String vmname, String vmsignature, String vmsuperclass, String[] vminterfaces)
vmname
- vm name of a classvmsignature
- vm signature of the class (may be null
)vmsuperclass
- vm name of the superclass of the class (may be
null
)vminterfaces
- vm names of interfaces of the class (may be null
)String getQualifiedClassName(String vmname)
vmname
- vm name of a classString getMethodName(String vmclassname, String vmmethodname, String vmdesc, String vmsignature)
vmclassname
- vm name of a containing classvmmethodname
- vm name of the methodvmdesc
- vm method descriptorvmsignature
- vm signature of the method (may be null
)String getQualifiedMethodName(String vmclassname, String vmmethodname, String vmdesc, String vmsignature)
vmclassname
- vm name of a containing classvmmethodname
- vm name of the methodvmdesc
- vm method descriptorvmsignature
- vm signature of the method (may be null
)Copyright © 2017. All rights reserved.