*
* @return The new node
*/
public FinalNodeImpl createStandardFinalNode()
{
FinalNodeImpl node = new FinalNodeImpl();
node.setName(CoreConstants.DEFAULT_FINAL_NODE_NAME);
NodeSocket socket = createEntrySocket(CoreConstants.SOCKET_IN, true);
socket.setGeometry(ProcessUtil.createSocketGeometry("n"));
node.setSocket(socket);
return node;
}