Changeset 148 in tmcsimulator-scriptbuilder for trunk/src/event


Ignore:
Timestamp:
11/18/2019 03:44:47 PM (6 years ago)
Author:
sdanthin
Message:

Properties.java updated types to Multiple

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/event/editor/frame/Properties.java

    r147 r148  
    1313public enum Properties 
    1414{ 
    15     ATMS                ("ATMS", PropertyTypes.Optional, 
     15    ATMS                ("ATMS", PropertyTypes.Multiple, 
    1616        loadImage(Images.getImage("ATMSEval.png")), new ATMSEvaluationEvent()), 
    17     ActivityLog         ("Activity Log", PropertyTypes.Optional, 
     17    ActivityLog         ("Activity Log", PropertyTypes.Multiple, 
    1818        loadImage(Images.getImage("ActivityLogEval.png")), new ActivityLogEvaluationEvent()), 
    19     CAD                 ("CAD", PropertyTypes.Optional, 
     19    CAD                 ("CAD", PropertyTypes.Multiple, 
    2020        loadImage(Images.getImage("CADEval.png")), new CADEvaluationEvent()), 
    21     Facilitator         ("Faciliatator", PropertyTypes.Optional, 
     21    Facilitator         ("Faciliatator", PropertyTypes.Multiple, 
    2222        loadImage(Images.getImage("FacilitatorEval.png")), new FacilitatorEvaluationEvent()), 
    23     Radio               ("Radio", PropertyTypes.Optional, 
     23    Radio               ("Radio", PropertyTypes.Multiple, 
    2424        loadImage(Images.getImage("RadioEval.png")), new RadioEvaluationEvent()), 
    25     MaintenanceRadio    ("Maintenance Radio", PropertyTypes.Optional, 
     25    MaintenanceRadio    ("Maintenance Radio", PropertyTypes.Multiple, 
    2626        loadImage(Images.getImage("MaintenanceRadio.png")), new MaintenanceRadioEvent()), 
    27     TMTRadio            ("TMT Radio", PropertyTypes.Optional, 
     27    TMTRadio            ("TMT Radio", PropertyTypes.Multiple, 
    2828        loadImage(Images.getImage("TMTRadio.png")), new TMTRadioEvent()), 
    29     Telephone           ("Telephone", PropertyTypes.Optional, 
     29    Telephone           ("Telephone", PropertyTypes.Multiple, 
    3030        loadImage(Images.getImage("Telephone.png")), new TelephoneEvent()), 
    31     CHPRadio            ("CHP Radio",PropertyTypes.Optional, 
     31    CHPRadio            ("CHP Radio",PropertyTypes.Multiple, 
    3232        loadImage(Images.getImage("CHPRadio.png")), new CHPRadioEvent()), 
    33     CMS                 ("CMS", PropertyTypes.Optional, 
     33    CMS                 ("CMS", PropertyTypes.Multiple, 
    3434        loadImage(Images.getImage("CMSEval.png")), new CMSEvaluationEvent()), 
    35     Audio               ("Audio", PropertyTypes.Optional, 
     35    Audio               ("Audio", PropertyTypes.Multiple, 
    3636        loadImage(Images.getImage("Audio.png")), new AudioEvent()), 
    37     CCTV                ("CCTV", PropertyTypes.Optional, 
     37    CCTV                ("CCTV", PropertyTypes.Multiple, 
    3838        loadImage(Images.getImage("CCTV.png")), new CCTVEvent()), 
    39     CADLog              ("CAD Log", PropertyTypes.Optional, 
     39    CADLog              ("CAD Log", PropertyTypes.Multiple, 
    4040        loadImage(Images.getImage("CAD.png")), new CADEvent()), 
    41     Paramics            ("Paramics", PropertyTypes.Optional, 
     41    Paramics            ("Paramics", PropertyTypes.Multiple, 
    4242        loadImage(Images.getImage("Paramics.png")), new ParamicsEvent()), 
    43     Tow                 ("Tow", PropertyTypes.Optional, 
     43    Tow                 ("Tow", PropertyTypes.Multiple, 
    4444        loadImage(Images.getImage("Tow.png")), new TowEvent()), 
    45     Unit                ("Unit", PropertyTypes.Optional, 
     45    Unit                ("Unit", PropertyTypes.Multiple, 
    4646        loadImage(Images.getImage("Unit.png")), new UnitEvent()), 
    47     Witness             ("Witness", PropertyTypes.Optional, 
     47    Witness             ("Witness", PropertyTypes.Multiple, 
    4848        loadImage(Images.getImage("Witness.png")), new WitnessEvent()); 
    4949 
Note: See TracChangeset for help on using the changeset viewer.