<?xml version="1.0" encoding="ISO-8859-1"?>
<ss:description type="action" id="com.autodesk.XML.PrintText"
		xmlns:ss="urn:Autodesk:Server"
		xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
		xsi:schemaLocation="urn:Autodesk:Server Schema.xsd">
	<ss:title>Print Text</ss:title>
	<ss:input>com.autodesk.objects.TextObject</ss:input>
	<ss:output>com.autodesk.objects.TextObject</ss:output>
	<ss:options>
		<ss:label/>
		<ss:option name="text">
			<ss:label>Please enter some text: </ss:label>
			<ss:tooltip>Enter text which will be written to the output stream as well as passed to the next action.</ss:tooltip>
			<ss:string maxLength="655535" numRows="6" numColumns="20"/>
		</ss:option>
	</ss:options>
	<ss:code>
from com.autodesk.objects import TextObject
def main(input, text):
	if len(text) == 0:
		text = input.getText()
	print text
	output = TextObject(text)
	return output
	</ss:code>
</ss:description>
