blob: bda144a478c0b2bd29a360a14d1e92672f00993b [file] [log] [blame]
/*=============================================================================#
# Copyright (c) 2016, 2020 Stephan Wahlbrink and others.
#
# 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, or the Apache License, Version 2.0
# which is available at https://www.apache.org/licenses/LICENSE-2.0.
#
# SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
#
# Contributors:
# Stephan Wahlbrink <sw@wahlbrink.eu> - initial API and implementation
#=============================================================================*/
package org.eclipse.statet.ltk.buildpaths.ui;
import org.eclipse.jface.resource.ImageDescriptor;
import org.eclipse.jface.resource.ImageRegistry;
import org.eclipse.swt.graphics.Image;
import org.eclipse.statet.internal.ltk.buildpaths.ui.BuildpathsUIPlugin;
public class BuildpathsUIResources {
private static final String NS= "org.eclipse.statet.ltk.buildpath"; //$NON-NLS-1$
public static final String OBJ_SOURCE_ATTACHMENT_ATTRIBUTE_IMAGE_ID= NS + "/image/obj/attribute-source_attachment"; //$NON-NLS-1$
public static final String OBJ_INCLUSION_FILTER_ATTRIBUTE_IMAGE_ID= NS + "/image/obj/attribute-inclusion_filter"; //$NON-NLS-1$
public static final String OBJ_EXCLUSION_FILTER_ATTRIBUTE_IMAGE_ID= NS + "/image/obj/attribute-exclusion_filter"; //$NON-NLS-1$
public static final String OBJ_OUTPUT_FOLDER_ATTRIBUTE_IMAGE_ID= NS + "/image/obj/attribute-output_folder"; //$NON-NLS-1$
public static final BuildpathsUIResources INSTANCE= new BuildpathsUIResources();
private final ImageRegistry registry;
private BuildpathsUIResources() {
this.registry= BuildpathsUIPlugin.getInstance().getImageRegistry();
}
public ImageDescriptor getImageDescriptor(final String id) {
return this.registry.getDescriptor(id);
}
public Image getImage(final String id) {
return this.registry.get(id);
}
}