source: src/main/java/agents/qoagent/UtilityDetails.java

Last change on this file was 127, checked in by Wouter Pasman, 6 years ago

#41 ROLL BACK of rev.126 . So this version is equal to rev. 125

File size: 705 bytes
Line 
1package agents.qoagent;
2
3import java.util.ArrayList;
4
5/*****************************************************************
6 * Class name: UtilityDetails
7 * Goal: This class holds several issues in an array of issues.
8 * All issues are under the same title which is saved in a string.
9 ****************************************************************/
10public class UtilityDetails
11{
12 public String sTitle;
13 public ArrayList<UtilityIssue> lstUtilityIssues; // list of UtilityIssue
14
15 //the constructor inits the title to an empty string, and the
16 //utility issues array to an empty array
17 public UtilityDetails()
18 {
19 sTitle = "";
20 lstUtilityIssues = new ArrayList<UtilityIssue>();
21 }
22}
Note: See TracBrowser for help on using the repository browser.