blob: f324d36c38eb77baf7061626f86b4265af72c458 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 Brad Reynolds 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:
* Brad Reynolds - initial API and implementation
******************************************************************************/
package org.eclipse.jface.tests.internal.databinding.internal.beans;
import java.beans.PropertyChangeListener;
import java.beans.PropertyChangeSupport;
import java.util.List;
import java.util.Set;
/**
* Simple Java Bean for testing.
*
* @since 3.3
*/
public class Bean {
private PropertyChangeSupport support = new PropertyChangeSupport(this);
private String value;
private List list;
private Set set;
public Bean() {
}
public Bean(String value) {
this.value = value;
}
public Bean(List list) {
this.list = list;
}
public Bean(Set set) {
this.set = set;
}
public void addPropertyChangeListener(PropertyChangeListener listener) {
support.addPropertyChangeListener(listener);
}
public void removePropertyChangeListener(PropertyChangeListener listener) {
support.removePropertyChangeListener(listener);
}
public String getValue() {
return value;
}
public void setValue(String value) {
support.firePropertyChange("value", this.value, this.value = value);
}
public List getList() {
return list;
}
public void setList(List list) {
support.firePropertyChange("list", this.list, this.list = list);
}
public Bean[] getListArray() {
return (Bean[]) list.toArray(new Bean[list.size()]);
}
public Set getSet() {
return set;
}
public void setSet(Set set) {
support.firePropertyChange("set", this.set, this.set = set);
}
}