test
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 236 of file helpers.py.

Constructor & Destructor Documentation

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

Definition at line 238 of file helpers.py.

239  def __init__(self,paramName,paramSearch):
240  self._paramName = paramName
241  self._paramSearch = paramSearch
self._modules = []

Member Function Documentation

def helpers.MassSearchParamVisitor.enter (   self,
  visitee 
)

Definition at line 242 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.

243  def enter(self,visitee):
244  if (hasattr(visitee,self._paramName)):
245  if getattr(visitee,self._paramName) == self._paramSearch:
self._modules.append(visitee)
def helpers.MassSearchParamVisitor.leave (   self,
  visitee 
)

Definition at line 246 of file helpers.py.

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

Definition at line 248 of file helpers.py.

249  def modules(self):
250  return self._modules
251 

Member Data Documentation

helpers.MassSearchParamVisitor._modules
private

Definition at line 241 of file helpers.py.

Referenced by helpers.MassSearchParamVisitor.modules().

helpers.MassSearchParamVisitor._paramName
private

Definition at line 239 of file helpers.py.

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

helpers.MassSearchParamVisitor._paramSearch
private

Definition at line 240 of file helpers.py.

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