< prev index next >
src/java.desktop/share/classes/java/beans/PropertyEditorSupport.java
Print this page
*** 36,55 ****
*/
public class PropertyEditorSupport implements PropertyEditor {
/**
! * Constructs a <code>PropertyEditorSupport</code> object.
*
* @since 1.5
*/
public PropertyEditorSupport() {
setSource(this);
}
/**
! * Constructs a <code>PropertyEditorSupport</code> object.
*
* @param source the source used for event firing
* @since 1.5
*/
public PropertyEditorSupport(Object source) {
--- 36,55 ----
*/
public class PropertyEditorSupport implements PropertyEditor {
/**
! * Constructs a {@code PropertyEditorSupport} object.
*
* @since 1.5
*/
public PropertyEditorSupport() {
setSource(this);
}
/**
! * Constructs a {@code PropertyEditorSupport} object.
*
* @param source the source used for event firing
* @since 1.5
*/
public PropertyEditorSupport(Object source) {
*** 61,71 ****
/**
* Returns the bean that is used as the
* source of events. If the source has not
* been explicitly set then this instance of
! * <code>PropertyEditorSupport</code> is returned.
*
* @return the source object or this instance
* @since 1.5
*/
public Object getSource() {
--- 61,71 ----
/**
* Returns the bean that is used as the
* source of events. If the source has not
* been explicitly set then this instance of
! * {@code PropertyEditorSupport} is returned.
*
* @return the source object or this instance
* @since 1.5
*/
public Object getSource() {
< prev index next >