Salome HOME
Extended Group Feature test.
[modules/shaper.git] / src / PythonAddons / addons_Features.py
index 00c72b0274ebaacd5c10dffc49b7726d7517f28d..d53755595a96af63074ba78b340932aa23cc9aee 100644 (file)
@@ -3,31 +3,30 @@
 
 import ModelAPI
 from macros.box.feature      import BoxFeature
-from macros.cylinder.feature import CylinderFeature
 
 
 class PythonFeaturesPlugin(ModelAPI.ModelAPI_Plugin):
+    """Implementation of features plugin"""
 
     def __init__(self):
+        """Constructor"""
         ModelAPI.ModelAPI_Plugin.__init__(self)
         aSession = ModelAPI.ModelAPI_Session.get()
         aSession.registerPlugin(self)
         pass
 
     def createFeature(self, theFeatureID):
+        """Create a feature by its Id"""
         aFeature = None
 
         if theFeatureID == BoxFeature.ID():
             aFeature = BoxFeature().__disown__()
 
-        elif theFeatureID == CylinderFeature.ID():
-            aFeature = CylinderFeature().__disown__()
-
         else:
             raise StandardError("No such feature %s" % theFeatureID)
 
         return aFeature
 
-
+### The plugin object
 plugin = PythonFeaturesPlugin()
 plugin.__disown__()