Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 :
20 : #include <precomp.h>
21 : #include <ary/idl/i_attribute.hxx>
22 : #include <ary/idl/ik_attribute.hxx>
23 :
24 :
25 : // NOT FULLY DECLARED SERVICES
26 : #include <cosv/tpl/processor.hxx>
27 : #include <ary/getncast.hxx>
28 : #include <sci_impl.hxx>
29 :
30 :
31 : namespace ary
32 : {
33 : namespace idl
34 : {
35 :
36 :
37 513 : Attribute::Attribute( const String & i_sName,
38 : Ce_id i_nService,
39 : Ce_id i_nModule,
40 : Type_id i_nType,
41 : bool i_bReadonly,
42 : bool i_bBound )
43 : : sName(i_sName),
44 : nOwner(i_nService),
45 : nNameRoom(i_nModule),
46 : nType(i_nType),
47 : aGetExceptions(),
48 : aSetExceptions(),
49 : bReadonly(i_bReadonly),
50 513 : bBound(i_bBound)
51 : {
52 513 : }
53 :
54 1026 : Attribute::~Attribute()
55 : {
56 1026 : }
57 :
58 :
59 : void
60 513 : Attribute::do_Accept(csv::ProcessorIfc & io_processor) const
61 : {
62 513 : csv::CheckedCall(io_processor,*this);
63 513 : }
64 :
65 : ClassId
66 2615 : Attribute::get_AryClass() const
67 : {
68 2615 : return class_id;
69 : }
70 :
71 : const String &
72 30927 : Attribute::inq_LocalName() const
73 : {
74 30927 : return sName;
75 : }
76 :
77 : Ce_id
78 295 : Attribute::inq_NameRoom() const
79 : {
80 295 : return nNameRoom;
81 : }
82 :
83 : Ce_id
84 2052 : Attribute::inq_Owner() const
85 : {
86 2052 : return nOwner;
87 : }
88 :
89 : E_SightLevel
90 1636 : Attribute::inq_SightLevel() const
91 : {
92 1636 : return sl_Member;
93 : }
94 :
95 : namespace ifc_attribute
96 : {
97 :
98 : inline const Attribute &
99 2610 : attribute_cast( const CodeEntity & i_ce )
100 : {
101 : csv_assert( is_type<Attribute>(i_ce) );
102 2610 : return static_cast< const Attribute& >(i_ce);
103 : }
104 :
105 : bool
106 513 : attr::HasAnyStereotype( const CodeEntity & i_ce )
107 : {
108 513 : const Attribute & rAttr = attribute_cast(i_ce);
109 513 : return rAttr.bReadonly OR rAttr.bBound;
110 : }
111 :
112 : bool
113 279 : attr::IsReadOnly( const CodeEntity & i_ce )
114 : {
115 279 : return attribute_cast(i_ce).bReadonly;
116 : }
117 :
118 : bool
119 279 : attr::IsBound( const CodeEntity & i_ce )
120 : {
121 279 : return attribute_cast(i_ce).bBound;
122 : }
123 :
124 : Type_id
125 513 : attr::Type( const CodeEntity & i_ce )
126 : {
127 513 : return attribute_cast(i_ce).nType;
128 : }
129 :
130 : void
131 513 : attr::Get_GetExceptions( Dyn_TypeIterator & o_result,
132 : const CodeEntity & i_ce )
133 : {
134 : o_result
135 513 : = new SCI_Vector<Type_id>( attribute_cast(i_ce).aGetExceptions );
136 513 : }
137 :
138 : void
139 513 : attr::Get_SetExceptions( Dyn_TypeIterator & o_result,
140 : const CodeEntity & i_ce )
141 : {
142 : o_result
143 513 : = new SCI_Vector<Type_id>( attribute_cast(i_ce).aSetExceptions );
144 513 : }
145 :
146 :
147 : } // namespace ifc_attribute
148 :
149 :
150 : } // namespace idl
151 3 : } // namespace ary
152 :
153 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|