package com.popware.avantis.list;

/**
 * Title:        Web Work Request
 * Description:  Ver 2 of the PopWare Net Enabled Avantis Work Request
 * Built on the Struts MVC Format
 * Copyright:    Copyright (c) 2001
 * Company:      PopWare Inc.
 * @author Alex Colic
 * @version 1.0
 */
import java.util.*;
import com.popware.avantis.*;

public class pwCategoryList
{
  private List categoryList=new Vector();

  public pwCategoryList()
  {
  }

  public List getCategoryList()
  {
    return categoryList;
  }

  public void setCategoryList(List categoryList)
  {
    this.categoryList = categoryList;
  }

  public void addCategoryList(pwCategory newCategory)
  {
    categoryList.add(newCategory);
  }

  public pwCategory getCategory(int i)
  {
   return (pwCategory)categoryList.get(i);
  }


}