Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/ReckonPrimer.activity/task.py
diff options
context:
space:
mode:
Diffstat (limited to 'ReckonPrimer.activity/task.py')
-rw-r--r--ReckonPrimer.activity/task.py33
1 files changed, 33 insertions, 0 deletions
diff --git a/ReckonPrimer.activity/task.py b/ReckonPrimer.activity/task.py
new file mode 100644
index 0000000..ddb64ee
--- /dev/null
+++ b/ReckonPrimer.activity/task.py
@@ -0,0 +1,33 @@
+'''
+author: Bernhard Ruttinger
+date: 02.12.2009
+description: test class "task" to test our new idea for saving all tasks
+'''
+
+class Task:
+ __title = None
+ __description = None
+ __settings = None
+
+ def __init__(self):
+ self.__title = "title"
+ self.__description = "description"
+ self.__settings = "settings"
+
+ def getTitle(self):
+ return self.__title
+
+ def setTitle(self, title):
+ self.__title = title
+
+ def getDescription(self):
+ return self.__description
+
+ def setDescription(self, description):
+ self.__description = description
+
+ def getSettings(self):
+ return self.__settings
+
+ def setSettings(self, settings):
+ self.__settings = settings