summaryrefslogtreecommitdiff
path: root/portato/gui/wrapper.py
diff options
context:
space:
mode:
Diffstat (limited to 'portato/gui/wrapper.py')
-rw-r--r--portato/gui/wrapper.py19
1 files changed, 1 insertions, 18 deletions
diff --git a/portato/gui/wrapper.py b/portato/gui/wrapper.py
index 86f4efe..12e4a71 100644
--- a/portato/gui/wrapper.py
+++ b/portato/gui/wrapper.py
@@ -55,7 +55,7 @@ class Tree:
@param it: the iterator
@type it: Iterator
- @returns: Nex iterator or None if the current iter is the last one.
+ @returns: Next iterator or None if the current iter is the last one.
@rtype: Iterator; None"""
raise NotImplementedError
@@ -70,16 +70,6 @@ class Tree:
@rtype: anything"""
raise NotImplementedError
- def get_path_from_iter(self, it):
- """Returns a string defining the path to the given iterator. In this path all nodes are divided by a colon ':'.
- For example: 2:4:5 could mean the 6th child of the 5th child of the 3rd element. It might also mean the 5th child of the 4th child of the 2nd element. It does not matter, where counting starts as long as it is consistent.
-
- @param it: the iterator
- @type it: Iterator
- @returns: the path string
- @rtype: string"""
- raise NotImplementedError
-
def append (self, parent = None, values = None):
"""Appends some values right after the given parent. If parent is None, it is appended as the first element.
@@ -181,10 +171,3 @@ class Console:
@returns: title of the console or None"""
raise NotImplementedError
-
- def get_original(self):
- """Returns the original console-object.
-
- @returns: original console-object
- @rtype: console-object"""
- raise NotImplementedError