Class PrintToStdOut
java.lang.Object
com.marginallyclever.nodegraphcore.Node
com.marginallyclever.nodegraphcore.nodes.PrintToStdOut
public class PrintToStdOut extends Node
sends A as a string to
System.out.println().
- Since:
- 2022-02-01
-
Field Summary
Fields inherited from class com.marginallyclever.nodegraphcore.Node
TITLE_HEIGHT
-
Constructor Summary
Constructors Constructor Description PrintToStdOut()
Constructor for subclasses to call.PrintToStdOut(java.lang.Object startingValue)
Constructor that sets a starting value -
Method Summary
Methods inherited from class com.marginallyclever.nodegraphcore.Node
addVariable, cleanAllInputs, cleanAllOutputs, getInPosition, getLabel, getName, getNumVariables, getOutPosition, getRectangle, getUniqueID, getUniqueIDSource, getUniqueName, getVariable, getVariables, isDirty, moveRelative, removeVariable, setLabel, setPosition, setRectangle, setUniqueID, setUniqueIDSource, toString, updateBounds, updateIfNotDirty
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Constructor Details
-
PrintToStdOut
public PrintToStdOut()Constructor for subclasses to call. -
PrintToStdOut
public PrintToStdOut(java.lang.Object startingValue)Constructor that sets a starting value- Parameters:
startingValue
- the starting value.
-
-
Method Details
-
create
Description copied from class:Node
Return one new instance of this type ofNode
. Override this method in derived classes. -
update
public void update()Description copied from class:Node
Override this method to provide the custom behavior of this node. Runs regardless of dirty inputs or outputs.
-