- Timestamp:
- 28/06/10 13:54:57 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TI12-security/trunk/ndg_xacml/ndg/xacml/parsers/etree/__init__.py
r7087 r7109 54 54 55 55 def _getPrefix(self): 56 """Get prefix 57 @return: prefix 58 @rtype: string 59 """ 56 60 return self.__prefix 57 61 58 62 def _setPrefix(self, value): 63 """Set prefix 64 @param value: prefix 65 @type value: string 66 @raise TypeError: invalid input value type 67 """ 59 68 self.__prefix = value 60 69 … … 62 71 63 72 def _getLocalPart(self): 73 """Get local part 74 @return: local part 75 @rtype: string 76 """ 64 77 return self.__localPart 65 78 66 79 def _setLocalPart(self, value): 80 """Set local part 81 @param value: local part 82 @type value: string 83 @raise TypeError: invalid input value type 84 """ 67 85 self.__localPart = value 68 86 … … 70 88 71 89 def _getNamespaceURI(self): 90 """Get namespace URI 91 @return: namespace URI 92 @rtype: string 93 """ 72 94 return self.__namespaceURI 73 95 74 96 def _setNamespaceURI(self, value): 97 """Set namespace URI 98 @param value: namespace URI 99 @type value: string 100 @raise TypeError: invalid input value type 101 """ 75 102 self.__namespaceURI = value 76 103 … … 84 111 @type qname: ndg.xacml.utils.etree.QName 85 112 @param qname: Qualified Name to compare with self 113 @return: True if input and this object match 114 @rtype: bool 86 115 """ 87 116 if not isinstance(qname, QName):
Note: See TracChangeset
for help on using the changeset viewer.