blob: 78a668893ae90f7eda5c9bd7ba5d569fea83eee5 [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 259380)
* Matthew Hall - bug 283204
******************************************************************************/
package org.eclipse.jface.internal.databinding.viewers;
import java.util.Set;
import org.eclipse.core.databinding.observable.Realm;
import org.eclipse.core.databinding.observable.set.IObservableSet;
import org.eclipse.core.databinding.property.set.SetProperty;
import org.eclipse.jface.databinding.swt.SWTObservables;
import org.eclipse.jface.viewers.ICheckable;
import org.eclipse.jface.viewers.IElementComparer;
import org.eclipse.jface.viewers.StructuredViewer;
import org.eclipse.jface.viewers.Viewer;
/**
* @since 3.3
*
*/
public class CheckableCheckedElementsProperty extends SetProperty {
private final Object elementType;
/**
* @param elementType
*/
public CheckableCheckedElementsProperty(Object elementType) {
this.elementType = elementType;
}
public Object getElementType() {
return elementType;
}
public IObservableSet observe(Object source) {
if (source instanceof Viewer) {
return observe(SWTObservables.getRealm(((Viewer) source)
.getControl().getDisplay()), source);
}
return super.observe(source);
}
public IObservableSet observe(Realm realm, Object source) {
IElementComparer comparer = null;
if (source instanceof StructuredViewer)
comparer = ((StructuredViewer) source).getComparer();
Set wrappedSet = ViewerElementSet.withComparer(comparer);
IObservableSet observable = new CheckableCheckedElementsObservableSet(
realm, wrappedSet, elementType, comparer, (ICheckable) source);
if (source instanceof Viewer)
observable = new ViewerObservableSetDecorator(observable,
(Viewer) source);
return observable;
}
}