コード例 #1
0
ファイル: FeederDesc.cs プロジェクト: xiaoyj/Space
 public FeederDesc(FeederCollection feederColl, FeederEquipment feederEntity, List<string> excludeNames) : this(feederColl, feederEntity)
 {
     this.m_newNames = excludeNames;
 }
コード例 #2
0
ファイル: AntConfigDesc.cs プロジェクト: xiaoyj/Space
 private void InitOutDoorInfo(CollectionsModel collModel, AntConfig outdoorEntity, string cellName, string oriCellName)
 {
     this.m_CellCollection = collModel.TranceiverColl;
     this.m_AntennaCollection = collModel.Antennas;
     this.m_TmaCollection = collModel.TmaColl;
     this.m_FeederCollection = collModel.FeederColl;
     this.m_SmartAntennaCollection = collModel.SmartAntennas;
     this.m_Entity = outdoorEntity;
     this.m_CellName = cellName;
     this.m_OriCellName = oriCellName;
 }
コード例 #3
0
ファイル: FeederDesc.cs プロジェクト: xiaoyj/Space
 public FeederDesc(FeederCollection feederColl, FeederEquipment feederEntity)
 {
     this.m_Entity = feederEntity;
     this.m_FeederCollection = feederColl;
 }
コード例 #4
0
 public EquipmentCfgFormEditor(CollectionsModel model)
 {
     this.feederColl = model.FeederColl;
     this.tmaColl = model.TmaColl;
     this.cellColl = model.TranceiverColl;
 }