Salome HOME
Add functions to know that SALOME module version is development one
[modules/kernel.git] / src / KERNEL_PY / salome_notebook.py
index b69a9512f946320375ea877aa03fd98cfa4ebb1e..2ad1ade9a104bc0a0347a004c87e6491e1888698 100644 (file)
@@ -1,30 +1,28 @@
-#! /usr/bin/python
 #  -*- coding: iso-8859-1 -*-
-#  Copyright (C) 2008  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
-#  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
-# 
-#  This library is free software; you can redistribute it and/or 
-#  modify it under the terms of the GNU Lesser General Public 
-#  License as published by the Free Software Foundation; either 
-#  version 2.1 of the License. 
-# 
-#  This library is distributed in the hope that it will be useful, 
-#  but WITHOUT ANY WARRANTY; without even the implied warranty of 
-#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
-#  Lesser General Public License for more details. 
-# 
-#  You should have received a copy of the GNU Lesser General Public 
-#  License along with this library; if not, write to the Free Software 
-#  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
-# 
-# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+# Copyright (C) 2007-2011  CEA/DEN, EDF R&D, OPEN CASCADE
+#
+# This library is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License as published by the Free Software Foundation; either
+# version 2.1 of the License.
+#
+# This library is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+# Lesser General Public License for more details.
 #
+# You should have received a copy of the GNU Lesser General Public
+# License along with this library; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 #
+# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 #
+
 #  File   : salome_notebook.py
 #  Author : Roman NIKOLAEV, Open CASCADE S.A.S.
 #  Module : SALOME
 #  $Header:
+#
 """
 Module salome_notebook gives access to Salome Notebook.
 """
@@ -75,10 +73,10 @@ class NoteBook:
         self.myStudy = Study
     
     def set(self, variableName, variable):
-       """
-       Create (or modify) variable with name "variableName" 
-       and value equal "theValue".
-       """
+        """
+        Create (or modify) variable with name "variableName" 
+        and value equal "theValue".
+        """
         if type(variable) == float:
             self.myStudy.SetReal(variableName, variable)
             
@@ -92,9 +90,9 @@ class NoteBook:
             self.myStudy.SetString(variableName, variable)
             
     def get(self, variableName):
-       """
-       Return value of the variable with name "variableName".
-       """
+        """
+        Return value of the variable with name "variableName".
+        """
         aResult = None
         if self.myStudy.IsVariable(variableName):
             
@@ -140,10 +138,10 @@ class NoteBook:
         return aResult
     
     def isVariable(self, variableName): 
-       """
-       Return true if variable with name "variableName" 
-       exists in the study, otherwise return false.
-       """
+        """
+        Return true if variable with name "variableName" 
+        exists in the study, otherwise return false.
+        """
         return self.myStudy.IsVariable(variableName)
 
     def setAs(self, variableName, typ):