blob: b7d95616a559d482962ea77228758291a4263382 [file] [log] [blame]
/*********************************************************************
* Copyright (c) 2005, 2019 SAP SE
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
* SAP SE - initial API, implementation and documentation
* mwenz - Bug 342869 - Image doesn't scale the contained SWT Image on resize
*
* SPDX-License-Identifier: EPL-2.0
**********************************************************************/
package org.eclipse.graphiti.testtool.sketch;
import org.eclipse.graphiti.ui.platform.AbstractImageProvider;
public class SketchImageProvider extends AbstractImageProvider {
// The prefix for all identifiers of this image provider
protected static final String PREFIX = "org.eclipse.graphiti.testtool.sketch."; //$NON-NLS-1$
// The image identifier for an EReference.
public static final String IMG_GRAPHITI = PREFIX + "graphiti"; //$NON-NLS-1$
@Override
protected void addAvailableImages() {
// register the path for each image identifier
addImageFilePath(IMG_GRAPHITI, "icons/Graphiti.jpg"); //$NON-NLS-1$
}
}