/*
* Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017,
* 2018, 2019
* Jonathan Schleifer <js@heap.zone>
*
* All rights reserved.
*
* This file is part of ObjFW. It may be distributed under the terms of the
* Q Public License 1.0, which can be found in the file LICENSE.QPL included in
* the packaging of this file.
*
* Alternatively, it may be distributed under the terms of the GNU General
* Public License, either version 2 or 3, which can be found in the file
* LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this
* file.
*/
#import "OFObject.h"
#import "OFSerialization.h"
OF_ASSUME_NONNULL_BEGIN
@class OFXMLElement;
/*!
* @class OFXMLNode OFXMLNode.h ObjFW/OFXMLNode.h
*
* @brief A class which stores an XML element.
*/
@interface OFXMLNode: OFObject <OFCopying, OFSerialization>
/*!
* @brief The contents of the node as a string value.
*
* For an @ref OFXMLElement, setting it removes all children and creates a
* single child with the specified string value.
*/
@property (nonatomic, copy) OFString *stringValue;
/*!
* @brief The contents of the receiver as a decimal value.
*/
@property (readonly, nonatomic) intmax_t decimalValue;
/*!
* @brief The contents of the receiver as a hexadecimal value.
*/
@property (readonly, nonatomic) uintmax_t hexadecimalValue;
/*!
* @brief The contents of the receiver as a float value.
*/
@property (readonly, nonatomic) float floatValue;
/*!
* @brief The contents of the receiver as a double value.
*/
@property (readonly, nonatomic) double doubleValue;
/*!
* @brief A string representing the node as an XML string.
*/
@property (readonly, nonatomic) OFString *XMLString;
- (instancetype)init OF_UNAVAILABLE;
- (instancetype)initWithSerialization: (OFXMLElement *)element OF_UNAVAILABLE;
/*!
* @brief Returns an OFString representing the OFXMLNode as an XML string with
* indentation.
*
* @param indentation The indentation for the XML string
* @return An OFString representing the OFXMLNode as an XML string with
* indentation
*/
- (OFString *)XMLStringWithIndentation: (unsigned int)indentation;
/*!
* @brief Returns an OFString representing the OFXMLNode as an XML string with
* indentation for the specified level.
*
* @param indentation The indentation for the XML string
* @param level The level of indentation
* @return An OFString representing the OFXMLNode as an XML string with
* indentation
*/
- (OFString *)XMLStringWithIndentation: (unsigned int)indentation
level: (unsigned int)level;
@end
OF_ASSUME_NONNULL_END