edu.iu.iv.modeling.tarl.util
Interface YearInformation

All Known Implementing Classes:
DefaultYearInformation

public interface YearInformation

This interface is used to store the YearInformation for the model. This information includes the start year and the end year of the model.

Author:
Jeegar T Maru

Method Summary
 int getEndYear()
          Returns the end year for the Model
 int getStartYear()
          Returns the start year for the Model
 void initializeDefault()
          Initializes the Year Information using default values
 void setEndYear(int endYear)
          Stores the end year for the Model
 void setStartYear(int startYear)
          Stores the start year for the Model
 

Method Detail

initializeDefault

public void initializeDefault()
Initializes the Year Information using default values


getStartYear

public int getStartYear()
Returns the start year for the Model

Returns:
the start year for the Model

getEndYear

public int getEndYear()
Returns the end year for the Model

Returns:
the end year for the Model

setStartYear

public void setStartYear(int startYear)
Stores the start year for the Model

Parameters:
startYear - the start year for the Model

setEndYear

public void setEndYear(int endYear)
Stores the end year for the Model

Parameters:
endYear - the end year for the Model