Changeset 335


Ignore:
Timestamp:
12/20/11 10:16:36 (12 years ago)
Author:
sherbold
Message:
  • changed visibility of some fields in de.ugoe.cs.eventbench.data.Event and ReplayableEvent? from private to protected to allow better sub-classing
Location:
trunk/EventBenchCore/src/de/ugoe/cs/eventbench/data
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/EventBenchCore/src/de/ugoe/cs/eventbench/data/Event.java

    r86 r335  
    4242         * </p> 
    4343         */ 
    44         private String type; 
     44        protected String type; 
    4545 
    4646        /** 
    4747         * </p> Target of the event. 
    4848         */ 
    49         private String target = null; 
     49        protected String target = null; 
    5050 
    5151        /** 
     
    5454         * </p> 
    5555         */ 
    56         private String targetShort = null; 
     56        protected String targetShort = null; 
    5757 
    5858        /** 
    5959         * Further information about the event that shall be included in its Id. 
    6060         */ 
    61         private String idInfo = ""; 
     61        protected String idInfo = ""; 
    6262 
    6363        /** 
  • trunk/EventBenchCore/src/de/ugoe/cs/eventbench/data/ReplayableEvent.java

    r108 r335  
    3535         * </p> 
    3636         */ 
    37         private List<T> replayEvents = new LinkedList<T>();; 
     37        protected List<T> replayEvents = new LinkedList<T>();; 
    3838 
    3939        /** 
     
    4444         * </p> 
    4545         */ 
    46         private boolean replayValid = true; 
     46        protected boolean replayValid = true; 
    4747 
    4848        /** 
     
    5151         * </p> 
    5252         */ 
    53         private IReplayDecorator decorator = null; 
     53        protected IReplayDecorator decorator = null; 
    5454 
    5555        /** 
Note: See TracChangeset for help on using the changeset viewer.