Difference between revisions of "PrintInputStage"

From CCIL
Jump to: navigation, search
(Created page with "Appends an object to a buffer. == Overview == <br/> {| |- | '''jar''' | ccil-api |- | '''recommended name''' | print |- | '''class''' | <pre>net.ccil.stages.generic.Pri...")
 
(Parameters)
 
(8 intermediate revisions by the same user not shown)
Line 1: Line 1:
Appends an object to a buffer.
+
Prints text.
  
 
== Overview ==
 
== Overview ==
Line 8: Line 8:
 
| ccil-api
 
| ccil-api
 
|-
 
|-
| '''recommended&nbsp;name'''
+
| '''name'''
 
| print
 
| print
 
|-
 
|-
 
| '''class'''  
 
| '''class'''  
| <pre>net.ccil.stages.generic.PrintInputStage</pre>
+
| net.ccil.stages.generic.PrintInputStage
 
|-
 
|-
 
| '''location'''
 
| '''location'''
| <pre>/ccil-api/src/main/java/net/ccil/stages/generic/PrintInputStage.java</pre>
+
| /ccil-api/src/main/java/net/ccil/stages/generic/PrintInputStage.java
 
|-
 
|-
 
| '''svn'''
 
| '''svn'''
| <pre>svn+ssh://atanas_ilchev@svn.code.sf.net/p/ccil/code/trunk/src/api/src/main/java/net/ccil/stages/generic/PrintInputStage.java</pre>
+
| svn+ssh://atanas_ilchev@svn.code.sf.net/p/ccil/code/trunk/src/api/src/main/java/net/ccil/stages/generic/PrintInputStage.java
 
|}
 
|}
  
== TTL ==
+
== Parameters ==
 +
{|
 +
! Name
 +
! Type
 +
! Description
 +
! Comment
 +
|-
 +
| input
 +
| java.lang.Object
 +
| The name of the variable to read the input from.
 +
|
 +
|}
 +
 
 +
== Registration ==
  
 
<pre>
 
<pre>
Line 30: Line 43:
 
</pre>
 
</pre>
  
== Context.properties ==
+
== Context ==
  
 
<pre>
 
<pre>
TBA
+
PRINT = print
 +
PRINT.input = @xfer
 
</pre>
 
</pre>
  

Latest revision as of 02:08, 16 May 2017

Prints text.

Overview


jar ccil-api
name print
class net.ccil.stages.generic.PrintInputStage
location /ccil-api/src/main/java/net/ccil/stages/generic/PrintInputStage.java
svn svn+ssh://atanas_ilchev@svn.code.sf.net/p/ccil/code/trunk/src/api/src/main/java/net/ccil/stages/generic/PrintInputStage.java

Parameters

Name Type Description Comment
input java.lang.Object The name of the variable to read the input from.

Registration

service:print	rdf:type	entity:service ;				
					entity:implementation	"net.ccil.stages.generic.PrintInputStage" ;
					entity:classpath	"" ;
					entity:arguments	"" .

Context

PRINT = print
PRINT.input = @xfer

Example

TBA

See Also