@@ -1,10 +1,10 @@ /* - * Copyright (c) 2011, Jonathan Schleifer + * Copyright (c) 2011, 2012, 2013, 2016, Jonathan Schleifer * Copyright (c) 2011, Florian Zeitz * - * https://webkeks.org/git/?p=objxmpp.git + * https://heap.zone/git/?p=objxmpp.git * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice is present in all copies. * @@ -29,18 +29,16 @@ @interface XMPPJID: OFObject { OFString *_node, *_domain, *_resource; } -#ifdef OF_HAVE_PROPERTIES /// \brief The JID's localpart @property (copy) OFString *node; /// \brief The JID's domainpart @property (copy) OFString *domain; /// \brief The JID's resourcepart @property (copy) OFString *resource; -#endif /** * \brief Creates a new autoreleased XMPPJID. * * \return A new autoreleased XMPPJID @@ -74,13 +72,6 @@ * \brief Returns the full JID. * * \return An OFString containing the full JID */ - (OFString*)fullJID; - -- (void)setNode: (OFString*)node; -- (OFString*)node; -- (void)setDomain: (OFString*)domain; -- (OFString*)domain; -- (void)setResource: (OFString*)resource; -- (OFString*)resource; @end