summaryrefslogtreecommitdiffstats
path: root/wizards/com/sun/star/wizards/common/Properties.py
diff options
context:
space:
mode:
Diffstat (limited to 'wizards/com/sun/star/wizards/common/Properties.py')
-rw-r--r--wizards/com/sun/star/wizards/common/Properties.py43
1 files changed, 0 insertions, 43 deletions
diff --git a/wizards/com/sun/star/wizards/common/Properties.py b/wizards/com/sun/star/wizards/common/Properties.py
deleted file mode 100644
index 4a906ed27d79..000000000000
--- a/wizards/com/sun/star/wizards/common/Properties.py
+++ /dev/null
@@ -1,43 +0,0 @@
-from com.sun.star.beans import PropertyValue
-
-'''
-Simplifies handling Arrays of PropertyValue.
-To make a use of this class, instantiate it, and call
-the put(propName,propValue) method.
-caution: propName should always be a String.
-When finished, call the getProperties() method to get an array of the set properties.
-@author rp
-'''
-
-class Properties(dict):
-
- @classmethod
- def getPropertyValue(self, props, propName):
- for i in props:
- if propName == i.Name:
- return i.Value
-
- raise AttributeError ("Property '" + propName + "' not found.")
-
- @classmethod
- def hasPropertyValue(self, props, propName):
- for i in props:
- if propName == i.Name:
- return True
- return False
-
- @classmethod
- def getProperties(self, _map):
- pv = []
- for k,v in _map.items():
- pv.append(self.createProperty(k, v))
- return pv
-
- @classmethod
- def createProperty(self, name, value, handle=None):
- pv = PropertyValue()
- pv.Name = name
- pv.Value = value
- if handle is not None:
- pv.Handle = handle
- return pv