@@ -27,14 +27,19 @@ { SEL _selector; id _object; } -#ifdef OF_HAVE_PROPERTIES +/*! + * The selector which is not or not fully implemented. + */ @property (readonly) SEL selector; + +/*! + * The object which does not (fully) implement the selector. + */ @property (readonly, retain) id object; -#endif /*! * @brief Creates a new, autoreleased not implemented exception. * * @param selector The selector which is not or not fully implemented @@ -51,20 +56,6 @@ * @param object The object which does not (fully) implement the selector * @return An initialized not implemented exception */ - initWithSelector: (SEL)selector object: (id)object; - -/*! - * @brief Returns the selector which is not or not fully implemented. - * - * @return The selector which is not or not fully implemented - */ -- (SEL)selector; - -/*! - * @brief Returns the object which does not (fully) implement the selector. - * - * @return The object which does not (fully) implement the selector - */ -- (id)object; @end