blob: 505db63d8ba8fe3e9b710c538b5a74ee56c99048 [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.core.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 {
/* package */PropertyChangeSupport changeSupport = new PropertyChangeSupport(this);
private String value;
private Object[] list = new Object[0];
private Set set;
public Bean() {
}
public Bean(String value) {
this.value = value;
}
public Bean(List list) {
this.list = (Bean[]) list.toArray(new Bean[list.size()]);
}
public Bean(Set set) {
this.set = set;
}
public void addPropertyChangeListener(PropertyChangeListener listener) {
changeSupport.addPropertyChangeListener(listener);
}
public void removePropertyChangeListener(PropertyChangeListener listener) {
changeSupport.removePropertyChangeListener(listener);
}
public String getValue() {
return value;
}
public void setValue(String value) {
changeSupport.firePropertyChange("value", this.value, this.value = value);
}
public Object[] getList() {
return list;
}
public void setList(Object[] elements) {
changeSupport.firePropertyChange("list", this.list, this.list = elements);
}
public Set getSet() {
return set;
}
public void setSet(Set set) {
changeSupport.firePropertyChange("set", this.set, this.set = set);
}
public boolean hasListeners(String propertyName) {
return changeSupport.hasListeners(propertyName);
}
}