blob: 38655d842be94cd8cbd244224735da25d9702f99 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009 Matthew Hall 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:
* Matthew Hall - initial API and implementation (bug 263868)
* Matthew Hall - bug 268203
******************************************************************************/
package org.eclipse.core.internal.databinding.property.set;
import java.util.Set;
import org.eclipse.core.databinding.observable.set.SetDiff;
import org.eclipse.core.databinding.property.INativePropertyListener;
import org.eclipse.core.databinding.property.ISimplePropertyListener;
import org.eclipse.core.databinding.property.set.SimpleSetProperty;
/**
* @param <E>
* type of the elements in the set
* @since 3.3
*
*/
public final class SelfSetProperty<E> extends SimpleSetProperty<Set<E>, E> {
private final Object elementTypeAsObject;
private final Class<E> elementType;
/**
* @param elementType
* @deprecated use the constructor that takes a Class instead
*/
public SelfSetProperty(Object elementType) {
this.elementTypeAsObject = elementType;
this.elementType = null;
}
/**
* @param elementType
*/
public SelfSetProperty(Class<E> elementType) {
this.elementTypeAsObject = elementType;
this.elementType = elementType;
}
public Object getElementType() {
return elementTypeAsObject;
}
public Class<E> getElementClass() {
return elementType;
}
protected Set<E> doGetSet(Set<E> source) {
return source;
}
protected void doSetSet(Set<E> source, Set<E> set, SetDiff<E> diff) {
diff.applyTo(source);
}
public INativePropertyListener<Set<E>> adaptListener(
ISimplePropertyListener<SetDiff<E>> listener) {
return null; // no listener API
}
protected void doAddListener(Object source,
INativePropertyListener<Set<E>> listener) {
}
protected void doRemoveListener(Set<E> source,
INativePropertyListener<Set<E>> listener) {
}
}