package com.ikea.kompis.browse.event;

import com.ikea.shared.browse.model.CatalogElementTree;

public class CategorySelectedEvent
{
  private final boolean isSeasonal;
  private final CatalogElementTree mCatalogElementTree;
  private final String mCategoryID;
  private final String mCategoryName;
  private final String mCategoryType;

  public CategorySelectedEvent(String paramString1, String paramString2, String paramString3, CatalogElementTree paramCatalogElementTree, boolean paramBoolean)
  {
    this.mCategoryName = paramString1;
    this.mCategoryID = paramString2;
    this.mCategoryType = paramString3;
    this.mCatalogElementTree = paramCatalogElementTree;
    this.isSeasonal = paramBoolean;
  }

  public CatalogElementTree getCatalogElementTree()
  {
    return this.mCatalogElementTree;
  }

  public String getCategoryId()
  {
    return this.mCategoryID;
  }

  public String getCategoryName()
  {
    return this.mCategoryName;
  }

  public String getCategoryType()
  {
    return this.mCategoryType;
  }

  public boolean isSeasonal()
  {
    return this.isSeasonal;
  }
}

/* Location:           C:\Documents and Settings\Cesar Cabello Cea\Mis documentos\Downloads\apk-downloader\com.ikea.kompis-6_dex2jar.jar
 * Qualified Name:     com.ikea.kompis.browse.event.CategorySelectedEvent
 * JD-Core Version:    0.6.2
 */