Package org.knime.core.webui.node.impl
Class PortDescription
java.lang.Object
org.knime.core.webui.node.impl.PortDescription
Describes an input or output port of a node.
- Author:
- Adrian Nembach, KNIME GmbH, Konstanz, Germany
-
Constructor Summary
ConstructorsConstructorDescriptionPortDescription(String name, org.knime.core.node.port.PortType type, String description) Constructor.PortDescription(String name, org.knime.core.node.port.PortType type, String description, boolean configurable) -
Method Summary
-
Constructor Details
-
PortDescription
Constructor.- Parameters:
name- the name of the porttype- the type of the portdescription- the description of the port
-
PortDescription
public PortDescription(String name, org.knime.core.node.port.PortType type, String description, boolean configurable) - Parameters:
name- the name of the porttype- the type of the portdescription- the description of the portconfigurable- whether the port is configurable (seeConfigurableNodeFactory)
-
-
Method Details
-
getName
- Returns:
- the name of the port
-
getDescription
- Returns:
- the description of the port
-
getType
public org.knime.core.node.port.PortType getType()- Returns:
- the type of the port
-
isConfigurable
public boolean isConfigurable()- Returns:
- whether the port is configurable
- See Also:
-
ConfigurableNodeFactory
-