INRIA & FluxMedia

Uses of Class
fr.fluxmedia.transmorpher.graph.Process

Packages that use Process
fr.fluxmedia.transmorpher.graph   
fr.fluxmedia.transmorpher.parser   
 

Uses of Process in fr.fluxmedia.transmorpher.graph
 

Subclasses of Process in fr.fluxmedia.transmorpher.graph
 class Main
          A Main instance is a graph component that can contains calls
 class MainProcess
          The MainProcess class is an helper class which provides methods to create an execution structure and methods to produce the java code corresponding to its type.
 class RepeatProcess
          Transmorpher graph repeat process definitions
 class Servlet
          Transmorpher graph servlet definitions
 class Transformer
          Transmorpher graph (JAXP) transformer definitions
 

Fields in fr.fluxmedia.transmorpher.graph declared as Process
protected  Process Channel.process
          the process that contains this channel
protected  Process CallImpl.process
          The process owner of this call
 

Methods in fr.fluxmedia.transmorpher.graph that return Process
 Process Channel.getProcess()
          Gets the process that owns this Channel object
 Process CallImpl.getProcess()
          Gets the process attribute of the CallImpl object
 Process Call.getProcess()
          Gets the process attribute of the Call object
 

Constructors in fr.fluxmedia.transmorpher.graph with parameters of type Process
ApplyExternal(java.lang.String id, java.lang.String type, Process process)
          Creates an instance of ApplyExternal with an id,a type and a process
ApplyExternal(java.lang.String id, java.lang.String type, java.lang.String file, Process process)
          Creates an instance of ApplyExternal with an id,a type, a file name and a process
ApplyExternal(java.lang.String id, java.lang.String type, java.lang.String file, Process process, int in, int out)
          Creates an instance of ApplyExternal with an id,a type, a file name, a process, a number of in and a number of out
ApplyImpl(java.lang.String id, java.lang.String type, Process process, java.lang.String reference, int in, int out)
          Creates an instance of ApplyImpl with an id, a type, a process, a reference ,a nuber of in and a number of out
ApplyProcess(java.lang.String id, java.lang.String type, Process process)
          Constructor for the ApplyProcess object
ApplyProcess(java.lang.String id, java.lang.String type, Process process, java.lang.String reference)
          Constructor for the ApplyProcess object
ApplyProcess(java.lang.String id, java.lang.String type, Process process, java.lang.String reference, int in, int out)
          Constructor for the ApplyProcess object
ApplyQuery(java.lang.String id, java.lang.String type, Process process)
          Creates an instance of ApplyQuery with an id ,a type and a process
ApplyQuery(java.lang.String id, java.lang.String type, Process process, java.lang.String reference)
          Creates an instance of ApplyQuery with an id ,a type, a process and a reference
ApplyRuleset(java.lang.String id, java.lang.String type, Process process)
          Creates an instance of ApplyRuleset with an id, a type, a process
ApplyRuleset(java.lang.String id, java.lang.String type, Process process, java.lang.String reference)
          Creates an instance of ApplyRuleset with an id , a type, a process and a reference
ApplyRuleset(java.lang.String id, java.lang.String type, Process process, java.lang.String reference, java.lang.String strategy)
          Creates an instance of ApplyRuleset with an id , a type, a process, a reference and a strategy
CallImpl(java.lang.String id, java.lang.String type, Process process, int numberOfIn, int numberOfOut)
          Constructor for the CallImpl object
Channel(java.lang.String name, Process process)
          Creates an instance of Channel with a name and a process
Channel(java.lang.String name, Process process, Port in, Port out)
          Creates an instance of Channel with a name and a process
Dispatch(java.lang.String id, java.lang.String type, Process process)
          Creates an instance of Dispatch with an id , a type and a process
Dispatch(java.lang.String id, java.lang.String type, Process process, int out)
          Constructor for the Dispatch object
FeedBack(java.lang.String name, Process p)
           
FeedBack(java.lang.String name, Process p, Port i, Port ii, Port io, Port o)
          This might really be useless
Generate(java.lang.String id, java.lang.String type, Process process)
          Creates an instance of Generate with an id , a type and a process that owns this serialize
Generate(java.lang.String id, java.lang.String type, Process process, int out)
          Creates an instance of Generate with an id , a type , a process that owns this serialize and the number of out ports.
Generate(java.lang.String id, java.lang.String type, Process process, int out, java.lang.String file)
          Creates an instance of Generate with an id , a type , a process that owns this serialize, the number of out ports and a file name
Generate(java.lang.String id, java.lang.String type, java.lang.String file, Process process)
          Creates an instance of Generate with an id , a type , a process that owns this serialize and a file name
Merge(java.lang.String id, java.lang.String type, Process process)
          Creates an instance of a Merge with an id ,a type and a process
Merge(java.lang.String id, java.lang.String type, Process process, int in)
          Creates an instance of a Merge with an id ,a type , a process and a number of in.
Null(java.lang.String name, Process process)
          Creates an instance of Null with a name and a process
Null(java.lang.String name, Process process, Port in, Port out)
          Creates an instance of Null with a name, a process, an in port and an out port ( NULL)
Repeat(java.lang.String name, Process owner, int nbIn, int nbOut, int nbBuf)
          The constructor.
Serialize(java.lang.String id, java.lang.String type, Process process)
          Creates an instance of serializer with an id, a type and a process that owns this call
Serialize(java.lang.String id, java.lang.String type, Process process, int in)
          Creates an instance of serializer with an id, a type , a process that owns this call and a number of in
Serialize(java.lang.String id, java.lang.String type, Process process, int in, java.lang.String file)
          Creates an instance of serializer with an id, a type , a process that owns this call, a number of in ports, and a file name (for compatibility with old versions of Transmorpher)
Serialize(java.lang.String id, java.lang.String type, java.lang.String fileName, Process process)
          Creates an instance of serializer with an id, a type , a process that owns this call and a file name (for compatibility with old versions of Transmorpher)
StdIn(java.lang.String name, Process process)
          Creates an instance of SdtIn with a name and a process
StdIn(java.lang.String name, Process process, Port in, Port out)
          Creates an instance of SdtIn with a name ,a process, an in port (null) and an out port.
StdOut(java.lang.String name, Process process)
          Creates an instance of SdtOut with a name and a process
StdOut(java.lang.String name, Process process, Port in, Port out)
          Creates an instance of SdtIn with a name ,a process, an in port and an out port (null).
Test(java.lang.String name, Process process)
          Creates an instance of Test with a name and a process
Test(java.lang.String name, Process process, Port in, Port innerIn, Port innerOut, Port out)
          Creates an instance of Test with a name and a process and all the ports
 

Uses of Process in fr.fluxmedia.transmorpher.parser
 

Methods in fr.fluxmedia.transmorpher.parser with parameters of type Process
 void ProcessParser.checkChannels(Process t)
          Checks the channel of the process.
 


INRIA & FluxMedia

..no bottom yet...