FGIExecutable::FGIExecutable Class Reference

List of all members.

Public Member Functions

def __init__
def __repr__

Public Attributes

 exe
 args
 env


Detailed Description

Fake Ganga Interface: Executable: 

Definition at line 3 of file FGIExecutable.py.


Member Function Documentation

def FGIExecutable::FGIExecutable::__init__ (   self,
  dict = {} 
)

Definition at line 7 of file FGIExecutable.py.

00007                            {}):
00008         self.exe    = 'echo'
00009         self.args   = {}
00010         self.env   = {}
00011         if dict.has_key('exe'): self.exe = dict['exe']
00012         if dict.has_key('env'): self.env = dict['env']
00013         if dict.has_key('args'): self.args = dict['args']
00014 

def FGIExecutable::FGIExecutable::__repr__ (   self  ) 

Definition at line 15 of file FGIExecutable.py.

00015                       :
00016         txt = "FGIExecutable ("
00017         txt += "exe = " + repr(self.exe) + ","
00018         txt += "env = " + repr(self.env) + ","
00019         txt += "args = " + repr(self.args) + ""
00020         txt += ")"
00021         return txt
        return txt


Member Data Documentation

FGIExecutable::FGIExecutable::exe

Definition at line 8 of file FGIExecutable.py.

FGIExecutable::FGIExecutable::args

Definition at line 9 of file FGIExecutable.py.

FGIExecutable::FGIExecutable::env

Definition at line 10 of file FGIExecutable.py.


The documentation for this class was generated from the following file:
Generated on Mon Feb 18 14:42:02 2008 for gbs by  doxygen 1.5.4