blob: 28b4cdfa5f339e549dfc746feb06c6bcdbb86506 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 IBM Corporation 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:
* IBM Corporation - initial API and implementation
******************************************************************************/
package org.eclipse.jface.conformance.databinding;
import org.eclipse.core.databinding.observable.IObservable;
import org.eclipse.core.databinding.observable.IObservableCollection;
import org.eclipse.core.databinding.observable.Realm;
/**
* Abstract implementation of {@link IObservableCollectionContractDelegate}.
*
* @since 3.2
*/
public abstract class AbstractObservableCollectionContractDelegate extends
AbstractObservableContractDelegate implements
IObservableCollectionContractDelegate {
/**
* Invokes {@link #createObservableCollection(Realm, elementCount)}.
*/
public final IObservable createObservable(Realm realm) {
return createObservableCollection(realm, 0);
}
public Object createElement(IObservableCollection collection) {
//no op
return null;
}
public Object getElementType(IObservableCollection collection) {
//no op
return null;
}
}