class_instance = N_MCBLOC.MCBLOC
label = 'BLOC'
- def __init__(self, fr="", docu="", regles=(), statut='f', condition=None,
+ def __init__(self, fr="", docu="", regles=(), statut='f', condition=None,ang=""
**args):
"""
Un bloc est caractérisé par les attributs suivants :
"""
# Initialisation des attributs
self.fr = fr
- assert args.get(
- 'ang') is None, '"ang" attribute does not exist anymore'
+ self.ang = ang
self.docu = docu
if type(regles) == types.TupleType:
self.regles = regles
list_instance = N_MCLIST.MCList
label = 'FACT'
- def __init__(self, fr="", docu="", regles=(), statut='f', defaut=None,
+ def __init__(self, fr="", docu="", regles=(), statut='f', defaut=None,ang=""
min=0, max=1, validators=None, **args):
"""
Un mot-clé facteur est caractérisé par les attributs suivants :
N_ENTITE.ENTITE.__init__(self, validators)
# Initialisation des attributs
self.fr = fr
- assert args.get(
- 'ang') is None, '"ang" attribute does not exist anymore'
+ self.ang=ang
self.docu = docu
if type(regles) == types.TupleType:
self.regles = regles
nommage = nommage
def __init__(
- self, nom, op, sd_prod=None, reentrant='n', repetable='o', fr="",
+ self, nom, op, sd_prod=None, reentrant='n', repetable='o', fr="",ang="",
docu="", regles=(), op_init=None, niveau = None, fichier_ini=0, UIinfo=None, **args):
"""
Méthode d'initialisation de l'objet MACRO. Les arguments sont utilisés pour initialiser
self.sd_prod = sd_prod
self.reentrant = reentrant
self.fr = fr
- assert args.get(
- 'ang') is None, '"ang" attribute does not exist anymore'
+ self.ang=ang
self.repetable = repetable
self.docu = docu
if type(regles) == types.TupleType:
label = 'OPER'
nommage = nommage
- def __init__(self, nom, op, sd_prod, reentrant='n', repetable='o', fr="",
+ def __init__(self, nom, op, sd_prod, reentrant='n', repetable='o', fr="",ang="",
docu="", regles=(), op_init=None, niveau = None, UIinfo=None, **args):
"""
Méthode d'initialisation de l'objet OPER. Les arguments sont utilisés pour initialiser
self.sd_prod = sd_prod
self.reentrant = reentrant
self.fr = fr
- assert args.get(
- 'ang') is None, '"ang" attribute does not exist anymore'
+ self.ang = ang
self.repetable = repetable
self.docu = docu
if type(regles) == types.TupleType:
class_instance = N_PROC_ETAPE.PROC_ETAPE
label = 'PROC'
- def __init__(self, nom, op, reentrant='n', repetable='o', fr="",
+ def __init__(self, nom, op, reentrant='n', repetable='o', fr="",ang="",
docu="", regles=(), op_init=None, niveau = None, UIinfo=None, **args):
"""
Méthode d'initialisation de l'objet PROC. Les arguments sont utilisés pour initialiser
self.reentrant = reentrant
self.repetable = repetable
self.fr = fr
- assert args.get(
- 'ang') is None, '"ang" attribute does not exist anymore'
+ self.ang=""
self.docu = docu
if type(regles) == types.TupleType:
self.regles = regles