CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Attributes
helpers.MassSearchParamVisitor Class Reference
Inheritance diagram for helpers.MassSearchParamVisitor:

Public Member Functions

def __init__
 
def enter
 
def leave
 
def modules
 

Private Attributes

 _modules
 
 _paramName
 
 _paramSearch
 

Detailed Description

Visitor that travels within a cms.Sequence, looks for a parameter and returns a list of modules that have it

Definition at line 189 of file helpers.py.

Constructor & Destructor Documentation

def helpers.MassSearchParamVisitor.__init__ (   self,
  paramName,
  paramSearch 
)

Definition at line 191 of file helpers.py.

192  def __init__(self,paramName,paramSearch):
193  self._paramName = paramName
194  self._paramSearch = paramSearch
self._modules = []

Member Function Documentation

def helpers.MassSearchParamVisitor.enter (   self,
  visitee 
)

Definition at line 195 of file helpers.py.

References helpers.MassSearchReplaceParamVisitor._paramName, helpers.MassSearchParamVisitor._paramName, helpers.MassSearchReplaceParamVisitor._paramSearch, helpers.MassSearchReplaceAnyInputTagVisitor._paramSearch, helpers.MassSearchParamVisitor._paramSearch, and ConfigBuilder.ConfigBuilder.MassSearchReplaceProcessNameVisitor._paramSearch.

196  def enter(self,visitee):
197  if (hasattr(visitee,self._paramName)):
198  if getattr(visitee,self._paramName) == self._paramSearch:
self._modules.append(visitee)
def helpers.MassSearchParamVisitor.leave (   self,
  visitee 
)

Definition at line 199 of file helpers.py.

200  def leave(self,visitee):
pass
def helpers.MassSearchParamVisitor.modules (   self)

Definition at line 201 of file helpers.py.

202  def modules(self):
203  return self._modules
204 

Member Data Documentation

helpers.MassSearchParamVisitor._modules
private

Definition at line 194 of file helpers.py.

Referenced by helpers.MassSearchParamVisitor.modules().

helpers.MassSearchParamVisitor._paramName
private

Definition at line 192 of file helpers.py.

Referenced by HiHelperTools.MassSearchReplaceParamVisitor.enter(), HiHelperTools.MassSearchParamVisitor.enter(), and helpers.MassSearchParamVisitor.enter().

helpers.MassSearchParamVisitor._paramSearch
private

Definition at line 193 of file helpers.py.

Referenced by HiHelperTools.MassSearchReplaceAnyInputTagVisitor.doIt(), HiHelperTools.MassSearchReplaceParamVisitor.enter(), HiHelperTools.MassSearchParamVisitor.enter(), and helpers.MassSearchParamVisitor.enter().