/* * Copyright (C) 2007-2012 Mathieu Baudier * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.argeo.eclipse.ui.jcr; import org.eclipse.swt.graphics.Image; /** Shared icons. */ public class JcrImages { public final static Image NODE = JcrUiPlugin.getImageDescriptor( "icons/node.gif").createImage(); public final static Image FOLDER = JcrUiPlugin.getImageDescriptor( "icons/folder.gif").createImage(); public final static Image FILE = JcrUiPlugin.getImageDescriptor( "icons/file.gif").createImage(); public final static Image BINARY = JcrUiPlugin.getImageDescriptor( "icons/binary.png").createImage(); public final static Image HOME = JcrUiPlugin.getImageDescriptor( "icons/home.gif").createImage(); public final static Image SORT = JcrUiPlugin.getImageDescriptor( "icons/sort.gif").createImage(); public final static Image REPOSITORIES = JcrUiPlugin.getImageDescriptor( "icons/repositories.gif").createImage(); public final static Image REPOSITORY_DISCONNECTED = JcrUiPlugin .getImageDescriptor("icons/repository_disconnected.gif") .createImage(); public final static Image REPOSITORY_CONNECTED = JcrUiPlugin .getImageDescriptor("icons/repository_connected.gif").createImage(); public final static Image REMOTE_DISCONNECTED = JcrUiPlugin .getImageDescriptor("icons/remote_disconnected.gif").createImage(); public final static Image REMOTE_CONNECTED = JcrUiPlugin .getImageDescriptor("icons/remote_connected.gif").createImage(); public final static Image WORKSPACE_DISCONNECTED = JcrUiPlugin .getImageDescriptor("icons/workspace_disconnected.png") .createImage(); public final static Image WORKSPACE_CONNECTED = JcrUiPlugin .getImageDescriptor("icons/workspace_connected.png").createImage(); }