EnvConfig.Variable.ListProcessor Class Reference
Inheritance diagram for EnvConfig.Variable.ListProcessor:
Collaboration diagram for EnvConfig.Variable.ListProcessor:

Public Member Functions

def isTarget (self, variable)
 
- Public Member Functions inherited from EnvConfig.Variable.VariableProcessor
def __init__ (self, env)
 
def isTarget (self, variable)
 
def process (self, variable, value)
 
def __call__ (self, variable, value)
 

Detailed Description

Base class for processors operating only on lists.

Definition at line 43 of file Variable.py.

Member Function Documentation

def EnvConfig.Variable.ListProcessor.isTarget (   self,
  variable 
)
Return True if this variable is a list.

Definition at line 47 of file Variable.py.

47  def isTarget(self, variable):
48  '''
49  Return True if this variable is a list.
50  '''
51  return isinstance(variable, List)
52 
def isTarget(self, variable)
Definition: Variable.py:47

The documentation for this class was generated from the following file: