blob: f64c67d25f64c7af3633bbc2c9e356d6031c997e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2019 Christian W. Damus and others.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Christian W. Damus - initial API and implementation
******************************************************************************/
package org.eclipse.emfforms.ide.builder;
import org.eclipse.emf.common.ui.MarkerHelper;
import org.eclipse.emfforms.bazaar.Create;
import org.eclipse.emfforms.bazaar.StaticBid;
/**
* Provider of the default {@link MarkerHelper} implementation.
*/
@StaticBid(bid = Double.NEGATIVE_INFINITY)
class DefaultMarkerHelperProvider implements MarkerHelperProvider {
/**
* Initializes me.
*/
DefaultMarkerHelperProvider() {
super();
}
/**
* Create the default marker helper.
*
* @return a {@code DefaultMarkerHelper}
*/
@Create
public MarkerHelper createDefault() {
return new DefaultMarkerHelper();
}
}