Example #1
0
 public CloneIndexFieldDefInfo(IndexFieldDefInfo sourceField, IndexFieldDefInfo targetField)
 {
     m_source = null;
     m_target = null;
     if (sourceField != null)
     {
         m_source = (IndexFieldDefInfo)sourceField.Clone();
     }
     if (targetField != null)
     {
         m_target = (IndexFieldDefInfo)targetField.Clone();
     }
 }
Example #2
0
 public IndexFieldDefInfo GetTargetInfo()
 {
     return((IndexFieldDefInfo)m_target.Clone());
 }
Example #3
0
 public IndexFieldDefInfo GetSourceInfo()
 {
     return((IndexFieldDefInfo)m_source.Clone());
 }
Example #4
0
 public CloneIndexFieldDefInfo(IndexFieldDefInfo fieldInfo)
 {
     m_source = (IndexFieldDefInfo)fieldInfo.Clone();
     m_target = (IndexFieldDefInfo)fieldInfo.Clone();
 }