Please take time to read the code disclaimer.

<--Go back to Kent's Projects

<--Go back to project post

package metadatagenerator;

import java.util.LinkedList;

/**
 *
 * @author Kent
 */
public class SessionType {

  private String name = "USE ENGLISH";
  private boolean selected = false;
  private boolean ignore = false;
  private LinkedList sessionList = new LinkedList();

  public SessionType() {
  }

  //
  /**
   * @return the name
   */
  public String getName() {
    return name;
  }

  /**
   * @param name the name to set
   */
  public void setName(String name) {
    this.name = name;
  }

  /**
   * @return the selected
   */
  public boolean isSelected() {
    return selected;
  }

  /**
   * @param selected the selected to set
   */
  public void setSelected(boolean selected) {
    this.selected = selected;
  }

  /**
   * @return the sessionList
   */
  public LinkedList getSessionList() {
    return sessionList;
  }

  /**
   * @param sessionList the sessionList to set
   */
  public void setSessionList(LinkedList sessionList) {
    this.sessionList = sessionList;
  }
  //

  @Override
  public String toString() {
    return name;
  }

  /**
   * @return the ignore
   */
  public boolean isIgnore() {
    return ignore;
  }

  /**
   * @param ignore the ignore to set
   */
  public void setIgnore(boolean ignore) {
    this.ignore = ignore;
  }
}