Filter.java :  » IDE-Eclipse » jdt » org » eclipse » jdt » internal » debug » ui » Java Open Source

Java Open Source » IDE Eclipse » jdt 
jdt » org » eclipse » jdt » internal » debug » ui » Filter.java
/*******************************************************************************
 * Copyright (c) 2000, 2005 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.jdt.internal.debug.ui;

 
/**
 * Model object that represents a single entry in a filter table.
 */
public class Filter {

  private String fName;
  private boolean fChecked;

  public Filter(String name, boolean checked) {
    setName(name);
    setChecked(checked);
  }

  public String getName() {
    return fName;
  }

  public void setName(String name) {
    fName = name;
  }

  public boolean isChecked() {
    return fChecked;
  }

  public void setChecked(boolean checked) {
    fChecked = checked;
  }

  public boolean equals(Object o) {
    if (o instanceof Filter) {
      Filter other = (Filter) o;
      if (getName().equals(other.getName())) {
        return true;
      }
    }
    return false;
  }

  public int hashCode() {
    return getName().hashCode();
  }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.