本文整理了Java中org.openide.util.Utilities.getShortClassName()
方法的一些代码示例,展示了Utilities.getShortClassName()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Utilities.getShortClassName()
方法的具体详情如下:
包路径:org.openide.util.Utilities
类名称:Utilities
方法名:getShortClassName
[英]Assemble a human-presentable class name for a specified class (omitting the package). Arrays are represented as e.g. String[]
.
[中]为指定的类组装一个人类可呈现的类名(省略包)。数组以[0$]等形式表示。
代码示例来源:origin: org.netbeans.api/org-openide-util
/** Assemble a human-presentable class name for a specified class (omitting the package).
* Arrays are represented as e.g. <code>String[]</code>.
* @param clazz the class to name
* @return the human-presentable name
*/
public static String getShortClassName(Class<?> clazz) {
// if it is an array, get short name of element type and append []
if (clazz.isArray()) {
return getShortClassName(clazz.getComponentType()) + "[]"; // NOI18N
}
String name = clazz.getName().replace('$', '.');
return name.substring(name.lastIndexOf('.') + 1, name.length()); // NOI18N
}
代码示例来源:origin: net.sf.squirrel-sql.thirdparty-non-maven/openide
/** Assemble a human-presentable class name for a specified class (omitting the package).
* Arrays are represented as e.g. <code>String[]</code>.
* @param clazz the class to name
* @return the human-presentable name
*/
public static String getShortClassName (Class clazz) {
// if it is an array, get short name of element type and append []
if (clazz.isArray ())
return getShortClassName (clazz.getComponentType ()) + "[]"; // NOI18N
String name = clazz.getName ().replace ('$', '.');
return name.substring (name.lastIndexOf (".") + 1, name.length ()); // NOI18N
}
代码示例来源:origin: net.sf.squirrel-sql.thirdpary-non-maven/openide
/** Assemble a human-presentable class name for a specified class (omitting the package).
* Arrays are represented as e.g. <code>String[]</code>.
* @param clazz the class to name
* @return the human-presentable name
*/
public static String getShortClassName (Class clazz) {
// if it is an array, get short name of element type and append []
if (clazz.isArray ())
return getShortClassName (clazz.getComponentType ()) + "[]"; // NOI18N
String name = clazz.getName ().replace ('$', '.');
return name.substring (name.lastIndexOf (".") + 1, name.length ()); // NOI18N
}
代码示例来源:origin: in.jlibs/org-openide-util
/** Assemble a human-presentable class name for a specified class (omitting the package).
* Arrays are represented as e.g. <code>String[]</code>.
* @param clazz the class to name
* @return the human-presentable name
*/
public static String getShortClassName(Class clazz) {
// if it is an array, get short name of element type and append []
if (clazz.isArray()) {
return getShortClassName(clazz.getComponentType()) + "[]"; // NOI18N
}
String name = clazz.getName().replace('$', '.');
return name.substring(name.lastIndexOf(".") + 1, name.length()); // NOI18N
}
代码示例来源:origin: uk.gov.nationalarchives.thirdparty.netbeans/org-openide-util
/** Assemble a human-presentable class name for a specified class (omitting the package).
* Arrays are represented as e.g. <code>String[]</code>.
* @param clazz the class to name
* @return the human-presentable name
*/
public static String getShortClassName(Class<?> clazz) {
// if it is an array, get short name of element type and append []
if (clazz.isArray()) {
return getShortClassName(clazz.getComponentType()) + "[]"; // NOI18N
}
String name = clazz.getName().replace('$', '.');
return name.substring(name.lastIndexOf('.') + 1, name.length()); // NOI18N
}
代码示例来源:origin: org.netbeans.modules/org-netbeans-core
private DataObject storeNewServiceType(ServiceType st) {
Class stype = st.getClass ();
// finds direct subclass of service type
while (stype.getSuperclass () != ServiceType.class) {
stype = stype.getSuperclass();
}
try{
String folder = org.openide.util.Utilities.getShortClassName(stype);
DataFolder dfServices = findSessionFolder("Services"); // NOI18N
DataFolder dfTarget = DataFolder.create(dfServices, folder);
return InstanceDataObject.create(dfTarget, null, st, null);
} catch (Exception ex) {
Logger.getLogger(Services.class.getName()).log(Level.WARNING, null, ex);
return null;
}
}
内容来源于网络,如有侵权,请联系作者删除!