Gaudi Framework, version v21r4

Home   Generated: 7 Sep 2009

GaudiTest::BlockSkipper Class Reference

Inheritance diagram for GaudiTest::BlockSkipper:

Inheritance graph
[legend]
Collaboration diagram for GaudiTest::BlockSkipper:

Collaboration graph
[legend]

List of all members.


Detailed Description

Definition at line 355 of file GaudiTest.py.


Public Member Functions

def __init__
def __processLine__

Public Attributes

 start
 end

Private Attributes

 _skipping

Member Function Documentation

def GaudiTest::BlockSkipper::__init__ (   self,
  start,
  end 
)

Definition at line 356 of file GaudiTest.py.

00356                                   :
00357         self.start = start
00358         self.end = end
00359         self._skipping = False
00360         
    def __processLine__(self, line):

def GaudiTest::BlockSkipper::__processLine__ (   self,
  line 
)

Reimplemented from GaudiTest::FilePreprocessor.

Definition at line 361 of file GaudiTest.py.

00361                                    :
00362         if self.start in line:
00363             self._skipping = True
00364             return None
00365         elif self.end in line:
00366             self._skipping = False
00367         elif self._skipping:
00368             return None
00369         return line
00370 
class RegexpReplacer(FilePreprocessor):


Member Data Documentation

Definition at line 357 of file GaudiTest.py.

Definition at line 358 of file GaudiTest.py.

Definition at line 359 of file GaudiTest.py.


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

Generated at Mon Sep 7 18:26:46 2009 for Gaudi Framework, version v21r4 by Doxygen version 1.5.6 written by Dimitri van Heesch, © 1997-2004