private void updateHelpText(BeanInfo bi) {
BeanDescriptor beanDescriptor = bi.getBeanDescriptor();
boolean isDocumented = documentedDboList.contains(beanDescriptor.getBeanClass().getName());
String beanDescription = isDocumented ? beanDescriptor.getShortDescription():"Not yet documented. |";
String[] beanDescriptions = beanDescription.split("\\|");
String beanDisplayName = beanDescriptor.getDisplayName();
String beanShortDescription = beanDescriptions.length >= 1 ? beanDescriptions[0] : "n/a";
String beanLongDescription = beanDescriptions.length >= 2 ? beanDescriptions[1] : "n/a";
beanShortDescription = BeansUtils.cleanDescription(beanShortDescription, true);
beanLongDescription = BeansUtils.cleanDescription(beanLongDescription, true);
helpBrowser.setText("<html>" +
"<head>" +
"<script type=\"text/javascript\">"+
"document.oncontextmenu = new Function(\"return false\");"+
"</script>"+
"<style type=\"text/css\">"+
"body {"+
"font-family: Courrier new, sans-serif;"+
"font-size: 14px;"+
"padding-left: 0.3em;"+
"background-color: #ECEBEB }"+
"</style>"+
"</head><p>"
+ "<font size=\"4.5\"><u><b>"+beanDisplayName+"</b></u></font>" + "<br><br>"
+ "<i>"+beanShortDescription+"</i>" + "<br><br>"
+ beanLongDescription + "</p></html>");
}
ObjectsExplorerComposite.java 文件源码
java
阅读 24
收藏 0
点赞 0
评论 0
项目:convertigo-eclipse
作者:
评论列表
文章目录