CMS 3D CMS Logo

List of all members | Public Member Functions
SequenceVisitors.ScheduleTaskValidator Class Reference
Inheritance diagram for SequenceVisitors.ScheduleTaskValidator:

Public Member Functions

def __init__ (self)
 
def enter (self, visitee)
 
def leave (self, visitee)
 

Detailed Description

Definition at line 6 of file SequenceVisitors.py.

Constructor & Destructor Documentation

def SequenceVisitors.ScheduleTaskValidator.__init__ (   self)

Definition at line 7 of file SequenceVisitors.py.

7  def __init__(self):
8  pass

Member Function Documentation

def SequenceVisitors.ScheduleTaskValidator.enter (   self,
  visitee 
)

Definition at line 9 of file SequenceVisitors.py.

9  def enter(self,visitee):
10  if visitee.isLeaf():
11  if isinstance(visitee, _Labelable):
12  if not visitee.hasLabel_():
13  raise ValueError("A task associated with the Schedule contains a module of type '"+visitee.type_()+"'\nwhich has no assigned label.")
14  elif isinstance(visitee, Service):
15  if not visitee._inProcess:
16  raise ValueError("A task associated with the Schedule contains a service of type '"+visitee.type_()+"'\nwhich is not attached to the process.")
def SequenceVisitors.ScheduleTaskValidator.leave (   self,
  visitee 
)

Definition at line 17 of file SequenceVisitors.py.

17  def leave(self,visitee):
18  pass
19 
20 # Use this on Paths