/******************************************************************************* * Copyright (c) 2007, 2014 compeople AG 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: * compeople AG - initial API and implementation *******************************************************************************/ package org.eclipse.riena.ui.core.uiprocess; import org.eclipse.riena.core.singleton.SingletonProvider; import org.eclipse.riena.core.wire.InjectExtension; /** * The {@code UISynchronizer} creates {@code IUISynchronizer} instances which * can be used to perform execution of processes with in the UI. * * <pre> * <extension point="org.eclipse.riena.ui.core.uiSynchronizer"> * <uiSynchronizer class="org.eclipse.riena.ui.swt.uiprocess.SwtUISynchronizer"/> * </extension> * </pre> * * In case multiple extension points exist, which define an implementation class * for the {@code IUISynchronizer}, there is no guarantee which one will be * used. * * @since 1.2 */ public final class UISynchronizer { private static final SingletonProvider<UISynchronizer> UIS = new SingletonProvider<UISynchronizer>( UISynchronizer.class); private IUISynchronizerExtension synchronizerExtension; private UISynchronizer() { // utility } /** * Create a new configured {@code IUISynchronizer}. * * @return a {@code IUISynchronizer}, <code>null</code> if no {@link IUISynchronizer} instance available. */ public static IUISynchronizer createSynchronizer() { return UIS.getInstance().create(); } private IUISynchronizer create() { if (synchronizerExtension != null) { return synchronizerExtension.createUISynchronizer(); } return null; } /** * @since 3.0 */ @InjectExtension(min = 1, max = 1) public void update(final IUISynchronizerExtension synchronizerExtension) { this.synchronizerExtension = synchronizerExtension; } }