use of org.knime.node2012.KnimeNodeDocument.KnimeNode in project GenericKnimeNodes by genericworkflownodes.
the class DynamicGenericNodeFactory method createNodeDescription.
@Override
protected NodeDescription createNodeDescription() {
try {
INodeConfiguration cfg = getNodeConfiguration();
KnimeNodeDocument doc = org.knime.node.v28.KnimeNodeDocument.Factory.newInstance();
Document domDoc = (Document) doc.getDomNode();
// Node
KnimeNode node = doc.addNewKnimeNode();
node.setDeprecated(m_deprecated);
node.setName(cfg.getName());
node.setIcon(getIconPath());
node.setType(KnimeNode.Type.MANIPULATOR);
node.setShortDescription(cfg.getDescription());
FullDescription fullDescr = node.addNewFullDescription();
// Intro
Intro intro = fullDescr.addNewIntro();
intro.addNewP().getDomNode().appendChild(domDoc.createTextNode(cfg.getManual()));
// Options
for (Parameter<?> p : cfg.getParameters()) {
Option option = fullDescr.addNewOption();
option.setName(p.getKey());
option.getDomNode().appendChild(domDoc.createTextNode(p.getDescription()));
}
// Ports
Ports ports = node.addNewPorts();
int index = 0;
for (Port p : cfg.getInputPorts()) {
InPort ip = ports.addNewInPort();
ip.setIndex(new BigInteger(Integer.toString(index++)));
String mimetypes = mimetypes2String(p.getMimeTypes());
ip.setName(p.getName() + mimetypes);
ip.getDomNode().appendChild(domDoc.createTextNode(p.getDescription() + mimetypes));
}
index = 0;
for (Port p : cfg.getOutputPorts()) {
OutPort op = ports.addNewOutPort();
op.setIndex(new BigInteger(Integer.toString(index++)));
String mimetypes = mimetypes2String(p.getMimeTypes());
op.setName(p.getName() + mimetypes);
op.getDomNode().appendChild(domDoc.createTextNode(p.getDescription() + mimetypes));
}
return new NodeDescription28Proxy(doc);
} catch (Exception e) {
logger.error("Dynamic node description instantiation failed", e);
}
return null;
}
use of org.knime.node2012.KnimeNodeDocument.KnimeNode in project knime-core by knime.
the class MissingNodeFactory method addNodeDescription.
/**
* {@inheritDoc}
*/
@Override
protected void addNodeDescription(final KnimeNodeDocument doc) {
KnimeNode node = doc.addNewKnimeNode();
node.setIcon("./missing.png");
node.setType(KnimeNode.Type.UNKNOWN);
node.setName("MISSING " + m_nodeInfo.getNodeNameNotNull());
String shortDescription = "Placeholder node for missing \"" + m_nodeInfo.getNodeNameNotNull() + "\".";
node.setShortDescription(shortDescription);
FullDescription fullDesc = node.addNewFullDescription();
Intro intro = fullDesc.addNewIntro();
P p = intro.addNewP();
p.newCursor().setTextValue(shortDescription);
p = intro.addNewP();
p.newCursor().setTextValue(m_nodeInfo.getErrorMessageWhenNodeIsMissing());
Ports ports = node.addNewPorts();
for (int i = 0; i < m_inTypes.length; i++) {
InPort inPort = ports.addNewInPort();
inPort.setIndex(i);
inPort.setName("Port " + i);
inPort.newCursor().setTextValue("Port guessed from the workflow connection table.");
}
for (int i = 0; i < m_outTypes.length; i++) {
OutPort outPort = ports.addNewOutPort();
outPort.setIndex(i);
outPort.setName("Port " + i);
outPort.newCursor().setTextValue("Port guessed from the workflow connection table.");
}
}
Aggregations