Beispiel #1
0
        protected override void  cloneValues(object target, Hashtable reentrance)
        {
            PriorityLevel tg = (PriorityLevel)target;

            cloneBaseValues(tg);
            tg.m_CriticalR = this.m_CriticalR;
            tg.m_UrgentR   = this.m_UrgentR;
            tg.m_NormalR   = this.m_NormalR;
        }
Beispiel #2
0
 public PriorityLevel getPriority()
 {
     if ((!this.isPersisting()) && (m_Priority != null) && (m_Priority.isLoaded()))
     {
         m_Priority = (PriorityLevel)getPersistenceManager().find(m_Priority.getClassName(), m_Priority.getId());
     }
     else if ((!this.isPersisting()) && (m_Priority != null))
     {
         m_Priority = (PriorityLevel)ApplyScopeChangesToEntity(m_Priority);
     }
     return(m_Priority);
 }
Beispiel #3
0
 public void setPriority(PriorityLevel paramPriority)
 {
     this.m_Priority = paramPriority;
 }