@@ -28,18 +28,19 @@ { OFString *_namespace; OFXMLElement *_element; } -#ifdef OF_HAVE_PROPERTIES -# ifdef __cplusplus -@property (readonly, copy, getter=namespace) OFString *namespace_; -# else +/*! + * The unbound namespace. + */ @property (readonly, copy) OFString *namespace; -# endif + +/*! + * The element in which the namespace was not bound. + */ @property (readonly, retain) OFXMLElement *element; -#endif /*! * @brief Creates a new, autoreleased unbound namespace exception. * * @param namespace_ The namespace which is unbound @@ -56,20 +57,6 @@ * @param element The element in which the namespace was not bound * @return An initialized unbound namespace exception */ - initWithNamespace: (OFString*)namespace_ element: (OFXMLElement*)element; - -/*! - * @brief Returns the unbound namespace. - * - * @return The unbound namespace - */ -- (OFString*)namespace; - -/*! - * @brief Returns the element in which the namespace was not bound. - * - * @return The element in which the namespace was not bound - */ -- (OFXMLElement*)element; @end