mirror of
https://github.com/wu736139669/ManagerDemo.git
synced 2026-08-05 05:55:42 +00:00
29 lines
641 B
Objective-C
29 lines
641 B
Objective-C
//
|
|
// DTHTMLParserTextNode.h
|
|
// DTCoreText
|
|
//
|
|
// Created by Oliver Drobnik on 26.12.12.
|
|
// Copyright (c) 2012 Drobnik.com. All rights reserved.
|
|
//
|
|
|
|
#import "DTHTMLParserNode.h"
|
|
|
|
/**
|
|
Specialized sub class of <DTHTMLParserNode> that represents text inside a node
|
|
*/
|
|
@interface DTHTMLParserTextNode : DTHTMLParserNode
|
|
|
|
/**
|
|
Designated initializer with the characters that make up the text.
|
|
@param characters The characters of the string
|
|
@returns The initialized text node
|
|
*/
|
|
- (id)initWithCharacters:(NSString *)characters;
|
|
|
|
/**
|
|
Returns the receivers character contents
|
|
*/
|
|
@property (nonatomic, readonly) NSString *characters;
|
|
|
|
@end
|