Salome HOME
PAL13000: Crash with 'import CALCULATOR_TEST_STUDY_WITHOUTIHM'
[modules/kernel.git] / src / SALOMEDSImpl / SALOMEDSImpl_AttributeName.cxx
1 // Copyright (C) 2005  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
3 // 
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either 
7 // version 2.1 of the License.
8 // 
9 // This library is distributed in the hope that it will be useful 
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
12 // Lesser General Public License for more details.
13 //
14 // You should have received a copy of the GNU Lesser General Public  
15 // License along with this library; if not, write to the Free Software 
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 //
18 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 //
20 //  File   : SALOMEDSImpl_AttributeName.cxx
21 //  Author : Sergey RUIN
22 //  Module : SALOME
23
24
25 #include "SALOMEDSImpl_AttributeName.hxx"
26
27 using namespace std;
28
29 IMPLEMENT_STANDARD_HANDLE( SALOMEDSImpl_AttributeName, SALOMEDSImpl_GenericAttribute )
30 IMPLEMENT_STANDARD_RTTIEXT( SALOMEDSImpl_AttributeName, SALOMEDSImpl_GenericAttribute )
31
32 //=======================================================================
33 //function : GetID
34 //purpose  :
35 //=======================================================================
36 const Standard_GUID& SALOMEDSImpl_AttributeName::GetID ()
37 {
38   static Standard_GUID NameID ("8650000D-63A0-4651-B621-CC95C9308598");
39   return NameID;
40 }   
41
42 Handle(SALOMEDSImpl_AttributeName) SALOMEDSImpl_AttributeName::Set (const TDF_Label& L, 
43                                                                     const TCollection_ExtendedString& Val) 
44 {
45   Handle(SALOMEDSImpl_AttributeName) A;
46   if (!L.FindAttribute(SALOMEDSImpl_AttributeName::GetID(), A)) {
47     A = new  SALOMEDSImpl_AttributeName(); 
48     L.AddAttribute(A);
49   }
50
51   A->SetValue(Val);   
52   return A;
53 }
54
55 //=======================================================================
56 //function : SetValue
57 //purpose  :
58 //=======================================================================
59 void SALOMEDSImpl_AttributeName::SetValue (const TCollection_ExtendedString& S)
60 {
61   CheckLocked();
62
63   if(myString == S) return;
64
65   Backup();
66
67   myString = S;
68
69   SetModifyFlag(); //SRN: Mark the study as being modified, so it could be saved 
70 }
71            
72
73 //=======================================================================
74 //function : ID
75 //purpose  :
76 //=======================================================================
77 const Standard_GUID& SALOMEDSImpl_AttributeName::ID () const { return GetID(); } 
78
79 //=======================================================================
80 //function : NewEmpty
81 //purpose  : 
82 //=======================================================================
83 Handle(TDF_Attribute) SALOMEDSImpl_AttributeName::NewEmpty () const
84 {  
85   return new SALOMEDSImpl_AttributeName(); 
86 }
87
88 //=======================================================================
89 //function : Restore
90 //purpose  : 
91 //=======================================================================
92 void SALOMEDSImpl_AttributeName::Restore(const Handle(TDF_Attribute)& with) 
93 {
94   myString = Handle(SALOMEDSImpl_AttributeName)::DownCast (with)->Value ();
95 }
96
97 //=======================================================================
98 //function : Paste
99 //purpose  : 
100 //=======================================================================
101
102 void SALOMEDSImpl_AttributeName::Paste (const Handle(TDF_Attribute)& into,
103                                            const Handle(TDF_RelocationTable)& RT) const
104 {
105   Handle(SALOMEDSImpl_AttributeName)::DownCast (into)->SetValue(myString);
106 }