package com.ericsson.tic.vi; /** * A Category is a list of category items. Data can be grouped by category. * * @author Sami Matilainen * @version 1.0 (2008-12-04) */ public class Category { /** The id of this Category set. */ public int id; /** The name of this category set. */ public String setName; /** A list of Category Items. */ public CategoryItem[] cats; /** * Creates a Category. * * @param id The id of this Category set * @param cats The CategoryItems which makes up this Category * @param setName The name of this set. */ public Category(int id, CategoryItem[] cats, String setName) { this.id = id; this.setName = setName; this.cats = cats; } }