本文整理匯總了Java中com.rapidminer.tools.documentation.ExampleProcess類的典型用法代碼示例。如果您正苦於以下問題:Java ExampleProcess類的具體用法?Java ExampleProcess怎麽用?Java ExampleProcess使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
ExampleProcess類屬於com.rapidminer.tools.documentation包,在下文中一共展示了ExampleProcess類的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: OperatorDocViewer
import com.rapidminer.tools.documentation.ExampleProcess; //導入依賴的package包/類
public OperatorDocViewer() {
super();
setLayout(new BorderLayout());
scrollPane = new ExtendedJScrollPane(editor);
scrollPane.setBorder(null);
setSelection(Collections.<Operator> emptyList());
editor.installDefaultStylesheet();
editor.setEditable(false);
addToolBar();
add(scrollPane, BorderLayout.CENTER);
editor.addHyperlinkListener(new HyperlinkListener() {
@Override
public void hyperlinkUpdate(HyperlinkEvent e) {
if (e.getEventType() == HyperlinkEvent.EventType.ACTIVATED) {
if (!RMUrlHandler.handleUrl(e.getDescription())) {
if (e.getDescription().startsWith("show_example_")) {
int index = Integer.parseInt(e.getDescription().substring("show_example_".length()));
ExampleProcess example = getDisplayedOperator().getOperatorDescription().getOperatorDocumentation().getExamples().get(index);
RapidMinerGUI.getMainFrame().setProcess(example.getProcess(), true);
}
}
if (e.getDescription().startsWith("/wiki/index.php?title=")) {
String op = e.getDescription().split("=")[1];
op = op.replaceAll(" ", "_");
op = op.toLowerCase();
op = op.replaceAll("\\(", "");
op = op.replaceAll("\\)", "");
op = op.replaceAll("-", "_");
OperatorDescription opDesc = OperatorService.getOperatorDescription(op);
if (opDesc != null) {
displayedOperatorDescName = opDesc.getName();
showDocumentation(opDesc);
// if (showHelpTextAction.isSelected()) {
// RapidDocBotImporter.showNewHelptext(true, true, getOperatorDocViewer(), opDesc);
// } else {
// RapidDocBotImporter.showNewHelptext(false, false, getOperatorDocViewer(), opDesc);
// }
}
}
}
}
});
}