0031682: Visualization - Prs3d_ShadingAspect::SetTransparency() has no effect with...
[occt.git] / src / StepBasic / StepBasic_DocumentProductAssociation.cxx
1 // Created on: 2003-01-28
2 // Created by: data exchange team
3 // Copyright (c) 2003-2014 OPEN CASCADE SAS
4 //
5 // This file is part of Open CASCADE Technology software library.
6 //
7 // This library is free software; you can redistribute it and/or modify it under
8 // the terms of the GNU Lesser General Public License version 2.1 as published
9 // by the Free Software Foundation, with special exception defined in the file
10 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
11 // distribution for complete text of the license and disclaimer of any warranty.
12 //
13 // Alternatively, this file may be used under the terms of Open CASCADE
14 // commercial license or contractual agreement.
15
16 // Generator:   ExpToCas (EXPRESS -> CASCADE/XSTEP Translator) V1.2
17
18 #include <Standard_Type.hxx>
19 #include <StepBasic_Document.hxx>
20 #include <StepBasic_DocumentProductAssociation.hxx>
21 #include <StepBasic_ProductOrFormationOrDefinition.hxx>
22 #include <TCollection_HAsciiString.hxx>
23
24 IMPLEMENT_STANDARD_RTTIEXT(StepBasic_DocumentProductAssociation,Standard_Transient)
25
26 //=======================================================================
27 //function : StepBasic_DocumentProductAssociation
28 //purpose  : 
29 //=======================================================================
30 StepBasic_DocumentProductAssociation::StepBasic_DocumentProductAssociation ()
31 {
32   defDescription = Standard_False;
33 }
34
35 //=======================================================================
36 //function : Init
37 //purpose  : 
38 //=======================================================================
39
40 void StepBasic_DocumentProductAssociation::Init (const Handle(TCollection_HAsciiString) &aName,
41                                                  const Standard_Boolean hasDescription,
42                                                  const Handle(TCollection_HAsciiString) &aDescription,
43                                                  const Handle(StepBasic_Document) &aRelatingDocument,
44                                                  const StepBasic_ProductOrFormationOrDefinition &aRelatedProduct)
45 {
46
47   theName = aName;
48
49   defDescription = hasDescription;
50   if (defDescription) {
51     theDescription = aDescription;
52   }
53   else theDescription.Nullify();
54
55   theRelatingDocument = aRelatingDocument;
56
57   theRelatedProduct = aRelatedProduct;
58 }
59
60 //=======================================================================
61 //function : Name
62 //purpose  : 
63 //=======================================================================
64
65 Handle(TCollection_HAsciiString) StepBasic_DocumentProductAssociation::Name () const
66 {
67   return theName;
68 }
69
70 //=======================================================================
71 //function : SetName
72 //purpose  : 
73 //=======================================================================
74
75 void StepBasic_DocumentProductAssociation::SetName (const Handle(TCollection_HAsciiString) &aName)
76 {
77   theName = aName;
78 }
79
80 //=======================================================================
81 //function : Description
82 //purpose  : 
83 //=======================================================================
84
85 Handle(TCollection_HAsciiString) StepBasic_DocumentProductAssociation::Description () const
86 {
87   return theDescription;
88 }
89
90 //=======================================================================
91 //function : SetDescription
92 //purpose  : 
93 //=======================================================================
94
95 void StepBasic_DocumentProductAssociation::SetDescription (const Handle(TCollection_HAsciiString) &aDescription)
96 {
97   theDescription = aDescription;
98 }
99
100 //=======================================================================
101 //function : HasDescription
102 //purpose  : 
103 //=======================================================================
104
105 Standard_Boolean StepBasic_DocumentProductAssociation::HasDescription () const
106 {
107   return defDescription;
108 }
109
110 //=======================================================================
111 //function : RelatingDocument
112 //purpose  : 
113 //=======================================================================
114
115 Handle(StepBasic_Document) StepBasic_DocumentProductAssociation::RelatingDocument () const
116 {
117   return theRelatingDocument;
118 }
119
120 //=======================================================================
121 //function : SetRelatingDocument
122 //purpose  : 
123 //=======================================================================
124
125 void StepBasic_DocumentProductAssociation::SetRelatingDocument (const Handle(StepBasic_Document) &aRelatingDocument)
126 {
127   theRelatingDocument = aRelatingDocument;
128 }
129
130 //=======================================================================
131 //function : RelatedProduct
132 //purpose  : 
133 //=======================================================================
134
135 StepBasic_ProductOrFormationOrDefinition StepBasic_DocumentProductAssociation::RelatedProduct () const
136 {
137   return theRelatedProduct;
138 }
139
140 //=======================================================================
141 //function : SetRelatedProduct
142 //purpose  : 
143 //=======================================================================
144
145 void StepBasic_DocumentProductAssociation::SetRelatedProduct (const StepBasic_ProductOrFormationOrDefinition &aRelatedProduct)
146 {
147   theRelatedProduct = aRelatedProduct;
148 }