--- a/Graphics/ClassItem.py Sat May 17 19:58:49 2014 +0200 +++ b/Graphics/ClassItem.py Sun May 18 14:13:09 2014 +0200 @@ -37,7 +37,7 @@ def addMethod(self, method): """ - Method to add a method to the class model. + Public method to add a method to the class model. @param method method name to be added (string) """ @@ -45,7 +45,7 @@ def addAttribute(self, attribute): """ - Method to add an attribute to the class model. + Public method to add an attribute to the class model. @param attribute attribute name to be added (string) """ @@ -53,7 +53,7 @@ def getMethods(self): """ - Method to retrieve the methods of the class. + Public method to retrieve the methods of the class. @return list of class methods (list of strings) """ @@ -61,7 +61,7 @@ def getAttributes(self): """ - Method to retrieve the attributes of the class. + Public method to retrieve the attributes of the class. @return list of class attributes (list of strings) """ @@ -161,7 +161,7 @@ def setModel(self, model): """ - Method to set the class model. + Public method to set the class model. @param model class model containing the class data (ClassModel) """ @@ -213,7 +213,7 @@ def isExternal(self): """ - Method returning the external state. + Public method returning the external state. @return external state (boolean) """