]> err.no Git - sope/blob - sope-xml/STXSaxDriver/Model/StructuredTextParagraph.m
5d4d7d964c69c875faf19b974d5dea89607f4d12
[sope] / sope-xml / STXSaxDriver / Model / StructuredTextParagraph.m
1 /*
2   Copyright (C) 2004 eXtrapola Srl
3
4   This file is part of SOPE.
5
6   SOPE is free software; you can redistribute it and/or modify it under
7   the terms of the GNU Lesser General Public License as published by the
8   Free Software Foundation; either version 2, or (at your option) any
9   later version.
10
11   SOPE is distributed in the hope that it will be useful, but WITHOUT ANY
12   WARRANTY; without even the implied warranty of MERCHANTABILITY or
13   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
14   License for more details.
15
16   You should have received a copy of the GNU Lesser General Public
17   License along with SOPE; see the file COPYING.  If not, write to the
18   Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
19   02111-1307, USA.
20 */
21
22 #include "StructuredTextParagraph.h"
23 #include "common.h"
24
25 @implementation StructuredTextParagraph
26
27 - (id)initWithString:(NSString *)_s {
28   if ((self = [super init])) {
29     self->_text = [_s retain];
30   }
31   return self;
32 }
33
34 - (void)dealloc {
35   [self->_text release];
36   [super dealloc];
37 }
38
39 /* accessors */
40
41 - (NSString *)text {
42   return self->_text;
43 }
44
45 /* processing */
46
47 - (NSString *)textParsedWithDelegate:(id<StructuredTextRenderingDelegate>)_del
48   inContext:(NSDictionary *)_ctx 
49 {
50   self->_delegate = _del;
51   [self beginParagraphInContext:_ctx];
52   [self parseText:[self text] inContext:_ctx];
53   [self endParagraphInContext:_ctx];
54   return nil;
55 }
56
57 @end /* StructuredTextParagraph */