Salome HOME
Merge branch 'nouvelEficas' of http://git.forge-pleiade.der.edf.fr/git/eficas into...
[tools/eficas.git] / Accas / __init__.py
1 # -*- coding: iso-8859-1 -*-
2 # Copyright (C) 2007-2015   EDF R&D
3 #
4 # This library is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU Lesser General Public
6 # License as published by the Free Software Foundation; either
7 # version 2.1 of the License.
8 #
9 # This library is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 # Lesser General Public License for more details.
13 #
14 # You should have received a copy of the GNU Lesser General Public
15 # License along with this library; if not, write to the Free Software
16 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 #
18 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 #
20 """
21    Ce package contient les classes qui seront effectivement utilisees dans les applications.
22    C'est dans ce package que sont realisees les combinaisons de classes de base
23    avec les classes MIXIN qui implementent les fonctionnalites qui ont ete separees
24    du noyau pour des raisons de modularite afin de faciliter la maintenance et
25    l'extensibilite.
26
27    De plus toutes les classes utilisables par les applications sont remontees au
28    niveau du package afin de rendre le plus independant possible l'utilisation des
29    classes et leur implementation.
30 """
31
32 # permet de se proteger de l'oubli de carte coding
33 # ce warning deviendra fatal en python 2.4
34 import warnings
35 warnings.filterwarnings('error','Non-ASCII character.*pep-0263',DeprecationWarning)
36
37 from A_JDC_CATA import JDC_CATA
38 from A_OPER import OPER
39 from A_PROC import PROC
40 from A_MACRO import MACRO
41 from A_FORM import FORM
42 from A_BLOC import BLOC
43 from A_FACT import FACT
44 from A_SIMP import SIMP
45 from A_EVAL import EVAL
46 from A_NUPLET import NUPL
47
48 from A_JDC import JDC
49 from A_ETAPE import ETAPE
50 from A_PROC_ETAPE import PROC_ETAPE
51 from A_MACRO_ETAPE import MACRO_ETAPE
52 from A_FORM_ETAPE import FORM_ETAPE
53 from A_MCFACT import MCFACT
54 from A_MCLIST import MCList
55 from A_MCBLOC import MCBLOC
56 from A_MCSIMP import MCSIMP
57
58 # Les regles
59 from A_AU_MOINS_UN import AU_MOINS_UN
60 from A_MEME_NOMBRE import MEME_NOMBRE
61 from A_AU_PLUS_UN import AU_PLUS_UN
62 from A_UN_PARMI import UN_PARMI
63 from A_PRESENT_PRESENT import PRESENT_PRESENT
64 from A_PRESENT_ABSENT import PRESENT_ABSENT
65 from A_EXCLUS import EXCLUS
66 from A_ENSEMBLE import ENSEMBLE
67 from A_A_CLASSER import A_CLASSER
68 from A_AVANT import AVANT
69
70 from A_ASSD import ASSD,assd
71 from A_ASSD import GEOM,geom
72 # Pour le moment on laisse fonction (ceinture et bretelles)
73 from A_ASSD import FONCTION, fonction
74 from A_ASSD import formule
75 from A_ASSD import formule_c
76 from A_ASSD import CO
77
78 from Noyau.N__F import _F
79
80 from Noyau.N_Exception import AsException
81 from Noyau.N_utils import AsType
82 from Noyau.N_utils import AsType
83 from Noyau.N_OPS import OPS, EMPTY_OPS
84 from Noyau.N_ASSD import not_checked
85
86 from A_VALIDATOR import OrVal,AndVal,OnlyStr
87 from A_VALIDATOR import OrdList,NoRepeat,LongStr,Compulsory,Absent,Together
88 from A_VALIDATOR import RangeVal, EnumVal, TypeVal, PairVal
89 from A_VALIDATOR import CardVal, InstanceVal
90 from A_VALIDATOR import VerifTypeTuple, VerifExiste
91 from A_VALIDATOR import FileExtVal, FunctionVal
92
93 # On remplace la factory des validateurs initialement dans Noyau par celle
94 # de A_VALIDATOR
95 import A_VALIDATOR
96 import Noyau.N_ENTITE
97 Noyau.N_ENTITE.ENTITE.factories['validator']=A_VALIDATOR.validatorFactory
98
99 from A_SENSIBILITE import CONCEPT_SENSIBLE, REUSE_SENSIBLE, DERIVABLE
100
101 from Extensions.niveau import NIVEAU
102 from Extensions.etape_niveau import ETAPE_NIVEAU
103 from Extensions.commentaire import COMMENTAIRE
104 from Extensions.parametre import PARAMETRE  
105 from Extensions.parametre_eval import PARAMETRE_EVAL
106 from Extensions.commande_comm import COMMANDE_COMM 
107 from Extensions.mcnuplet import MCNUPLET
108
109 from A_SALOME_ENTRY import SalomeEntry