INTEGRATION: CWS adc18 (1.5.2); FILE MERGED

2007/10/18 14:18:24 np 1.5.2.1: #i81775#
This commit is contained in:
Jens-Heiner Rechtien 2007-11-02 15:11:11 +00:00
parent 7448e53c5c
commit 096f085d8e

View file

@ -4,9 +4,9 @@
* *
* $RCSfile: ary_disp.cxx,v $ * $RCSfile: ary_disp.cxx,v $
* *
* $Revision: 1.5 $ * $Revision: 1.6 $
* *
* last change: $Author: vg $ $Date: 2007-09-18 13:41:35 $ * last change: $Author: hr $ $Date: 2007-11-02 16:11:11 $
* *
* The Contents of this file are made available subject to * The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1. * the terms of GNU Lesser General Public License Version 2.1.
@ -38,8 +38,9 @@
// NOT FULLY DECLARED SERVICES // NOT FULLY DECLARED SERVICES
#include <ary/re.hxx> #include <ary/cpp/c_ce.hxx>
#include <ary/r_disply.hxx> #include <ary/cpp/c_gate.hxx>
#include <ary/cpp/cp_ce.hxx>
@ -49,13 +50,15 @@ namespace ary
void void
Display::DisplaySlot_Rid( ary::Rid i_nId ) Display::DisplaySlot_Rid( ary::Rid i_nId )
{ {
const DisplayGate * pGate = Get_ReFinder(); const cpp::Gate *
pGate = Get_ReFinder();
if (pGate != 0) if (pGate != 0)
{ {
const RepositoryEntity * pRE = pGate->Find_Re( i_nId ); const ary::cpp::CodeEntity *
pRE = pGate->Ces().Search_Ce( cpp::Ce_id(i_nId) );
if (pRE != 0) if (pRE != 0)
{ {
pRE->StoreAt( *this ); pRE->Accept( *this );
return; return;
} }
} }
@ -65,16 +68,18 @@ Display::DisplaySlot_Rid( ary::Rid i_nId )
void void
Display::DisplaySlot_LocalCe( ary::Rid i_nId, Display::DisplaySlot_LocalCe( ary::cpp::Ce_id i_nId,
const udmstri & i_sName ) const String & i_sName )
{ {
const DisplayGate * pGate = Get_ReFinder(); const cpp::Gate *
pGate = Get_ReFinder();
if (pGate != 0) if (pGate != 0)
{ {
const RepositoryEntity * pRE = pGate->Find_Re( i_nId ); const ary::cpp::CodeEntity *
pRE = pGate->Ces().Search_Ce(i_nId);
if (pRE != 0) if (pRE != 0)
{ {
pRE->StoreAt( *this ); pRE->Accept( *this );
return; return;
} }
} }
@ -102,24 +107,10 @@ Display::do_DisplaySlot_Rid( ary::Rid )
} }
void void
Display::do_DisplaySlot_Lid( ary::Lid ) Display::do_DisplaySlot_LocalCe( ary::cpp::Ce_id ,
const String & )
{ {
} }
void
Display::do_DisplaySlot_LocalCe( ary::Rid ,
const udmstri & )
{
}
const DisplayGate *
Display::inq_Get_ReFinder() const
{
return 0;
}
} // namespace ary } // namespace ary