Salome HOME
Merge branch 'master' of salome:modules/smesh
[modules/smesh.git] / idl / SMESH_Hypothesis.idl
index 8d18789baea37cc21e49dca776d1bae6fbc2b69d..397079a96a908bf1bd9ab66103670ed1412360a1 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2007-2012  CEA/DEN, EDF R&D, OPEN CASCADE
+// Copyright (C) 2007-2016  CEA/DEN, EDF R&D, OPEN CASCADE
 //
 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
@@ -6,7 +6,7 @@
 // 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.
+// version 2.1 of the License, or (at your option) any later version.
 //
 // This library is distributed in the hope that it will be useful,
 // but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -76,38 +76,24 @@ module SMESH
     string GetVarParameter (in string methodName);
 
     /*!
-     *  Set list of parameters
-     *  \param theParameters is a string containing the notebook variables separated by ":" symbol,
-     *         used for Hypothesis creation
-     */
-    void SetParameters (in string theParameters);
-
-    /*!
-     *  Return list of notebook variables used for Hypothesis creation separated by ":" symbol
-     */
-    string GetParameters();
-
-    /*!
-     *  Return list of last notebook variables used for Hypothesis creation.
+     * \brief Store a hypothesis wrapping this not published one.
+     *
+     * This hyp, which has no own parameters but is published, is used to store variables
+     * defining parameters of this hypothesis.
      */
-    ListOfParameters GetLastParameters();
+    void SetHolderHypothesis(in SMESH::SMESH_Hypothesis hyp);
 
     /*!
-     *  Set list of parameters
-     *  \param theParameters is a string containing the last notebook variables separated by ":" symbol,
-     *         used for Hypothesis creation
-     */
-    void SetLastParameters(in string theParameters);
-    
-    /*!
-     * Clear parameters list
+     * Verify whether hypothesis supports given entity type 
      */
-    void ClearParameters();
+    boolean IsDimSupported( in Dimension type );
 
     /*!
-     * Verify whether hypothesis supports given entity type 
+     * Return true if a hypothesis has parameters.
+     *
+     * This method is intended for GUI to know if "Edit" menu item sould be available
      */
-    boolean IsDimSupported( in Dimension type );
+    boolean HasParameters();
   };
 
   typedef sequence<string> ListOfHypothesisName;