]> err.no Git - sope/blob - sope-appserver/WOXML/WOXMLMappingProperty.h
fixed copyrights for 2005
[sope] / sope-appserver / WOXML / WOXMLMappingProperty.h
1 /*
2   Copyright (C) 2000-2005 SKYRIX Software AG
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 #ifndef __WOXMLMappingProperty_H__
23 #define __WOXMLMappingProperty_H__
24
25 #import <Foundation/NSObject.h>
26
27 @class NSString;
28 @class WOXMLMappingEntity;
29
30 @interface WOXMLMappingProperty : NSObject
31 {
32   WOXMLMappingEntity *entity;
33   NSString *name;
34   NSString *xmlTag;
35   BOOL     attribute;         /* used during encoding */
36   BOOL     forceList;         /* decoding only        */
37   NSString *codeBasedOn;
38   BOOL     reportEmptyValues; /* decoding only        */
39   NSString *outputTags;       /* encoding only ?      */
40 }
41
42 - (id)initWithEntity:(WOXMLMappingEntity *)_entity;
43
44 /* validity */
45
46 - (BOOL)isValid;
47
48 /* attributes */
49
50 - (void)setName:(NSString *)_name;
51 - (NSString *)name;
52 - (void)setXmlTag:(NSString *)_xmlTag;
53 - (NSString *)xmlTag;
54 - (void)setCodeBasedOn:(NSString *)_codeBasedOn;
55 - (NSString *)codeBasedOn;
56 - (void)setOutputTags:(NSString *)_tags;
57 - (NSString *)outputTags;
58 - (void)setAttribute:(BOOL)_flag;
59 - (BOOL)attribute;
60 - (void)setForceList:(BOOL)_flag;
61 - (BOOL)forceList;
62 - (void)setReportEmptyValues:(BOOL)_flag;
63 - (BOOL)reportEmptyValues;
64
65 @end
66
67 #endif /* __WOXMLMappingProperty_H__ */