/**
* Creates a panel for the given {@link FunctionDescription}. When the panel is expanded, the
* extra information is shown.
*
* @param functionEntry
*/
public FunctionDescriptionPanel(FunctionDescription functionEntry) {
this.functionEntry = functionEntry;
initGUI();
if (functionEntry != null) {
updateFunctionEntry(functionEntry);
showMoreInformation(isExpanded);
} else {
showMoreInformation(false);
}
registerMouseListener();
addComponentListener(new ComponentAdapter() {
@Override
public void componentResized(ComponentEvent arg0) {
updateHeight();
}
});
initialized = true;
}
FunctionDescriptionPanel.java 文件源码
java
阅读 31
收藏 0
点赞 0
评论 0
项目:rapidminer
作者:
评论列表
文章目录