blob: 2c6616be8391c62cfd3a8465b9f8bc04b935f157 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.taverna.lang.uibuilder;
import java.beans.PropertyChangeListener;
import java.beans.PropertyChangeSupport;
import java.net.MalformedURLException;
import java.net.URI;
import java.net.URL;
/**
* Example bean with string and URL properties, both of which fire property
* change events
*
* @author Tom Oinn
*
*/
public class BeanWithBoundProps {
private String string = "Default value";
private URL url;
private PropertyChangeSupport pcs;
private URI uri;
public BeanWithBoundProps() {
try {
this.url = new URL("http://some.default.url");
this.pcs = new PropertyChangeSupport(this);
this.uri = URI.create("http://google.com/");
} catch (MalformedURLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
public void setUrl(URL url) {
URL old = this.url;
this.url = url;
this.pcs.firePropertyChange("url", old, url);
}
public URL getUrl() {
return url;
}
public void setString(String string) {
String old = this.string;
this.string = string;
this.pcs.firePropertyChange("string", old, string);
}
public String getString() {
return string;
}
public void addPropertyChangeListener(String propertyName,
PropertyChangeListener l) {
pcs.addPropertyChangeListener(propertyName, l);
}
public void removePropertyChangeListener(PropertyChangeListener l) {
pcs.removePropertyChangeListener(l);
}
public void setUri(URI uri) {
this.uri = uri;
}
public URI getUri() {
return uri;
}
}