Salome HOME
Copyright update 2022
[modules/gui.git] / tools / CurvePlot / src / python / views / View.py
1 # Copyright (C) 2016-2022  CEA/DEN, EDF R&D
2 #
3 # This library is free software; you can redistribute it and/or
4 # modify it under the terms of the GNU Lesser General Public
5 # License as published by the Free Software Foundation; either
6 # version 2.1 of the License, or (at your option) any later version.
7 #
8 # This library is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 # Lesser General Public License for more details.
12 #
13 # You should have received a copy of the GNU Lesser General Public
14 # License along with this library; if not, write to the Free Software
15 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 #
17 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 #
19
20 class View(object) :
21
22     def __init__( self, controller, model=None ) :
23         """Constructor"""
24         
25         self._model = model
26         self._controller = controller
27         pass
28
29     def getModel( self ) :
30         """
31         :returns: Model -- The view's model. 
32         """
33         return self._model
34
35     def setModel( self, model ) :
36         """
37         Associates a model to the view.
38         
39         :param model: Model -- The model to be associated.
40         
41         """
42         self._model = model
43         pass
44     
45     def getController( self ) :
46         """
47         :returns: Controller -- The controller of the view.
48         """
49         return self._controller
50     
51     def setController( self, controller ) :
52         """
53         Associates a controller to the view.
54         
55         :param controller: Controller -- The controller to be associated.
56         
57         """
58         self._controller = controller
59         pass
60     
61     def update( self) :
62         """
63         Updates the view contents.
64         
65         .. note::
66         
67            Virtual Method.
68            
69         """
70         raise NotImplementedError
71
72 pass