예제 #1
0
 public LOCATION getIdParentLocation()
 {
     if ((!this.isPersisting()) && (m_idParentLocation != null))
     {
         m_idParentLocation = (LOCATION)getPersistenceManager().find(m_idParentLocation.getClassName(), m_idParentLocation.getId());
     }
     return(m_idParentLocation);
 }
예제 #2
0
        protected override void  cloneValues(object target, Hashtable reentrance)
        {
            LOCATION tg = (LOCATION)target;

            cloneBaseValues(tg);
            tg.m_locName             = this.m_locName;
            tg.m_idParentLocation    = (LOCATION)cloneRelation(this.m_idParentLocation);
            tg.m_locDisplayName      = this.m_locDisplayName;
            tg.m_locDescription      = this.m_locDescription;
            tg.m_costLocation        = this.m_costLocation;
            tg.m_idWorkingTimeSchema = (WORKINGTIMESCHEMA)cloneRelation(this.m_idWorkingTimeSchema);
            tg.m_idTimeZone          = (BATIMEZONE)cloneRelation(this.m_idTimeZone);
            tg.m_idOrg = (ORG)cloneRelation(this.m_idOrg);
        }
예제 #3
0
 public void setIdParentLocation(LOCATION paramidParentLocation)
 {
     this.m_idParentLocation = paramidParentLocation;
 }