]> git.argeo.org Git - lgpl/argeo-commons.git/blob - base/runtime/org.argeo.eclipse.ui.jcr/src/main/java/org/argeo/eclipse/ui/jcr/JcrImages.java
Update license headers
[lgpl/argeo-commons.git] / base / runtime / org.argeo.eclipse.ui.jcr / src / main / java / org / argeo / eclipse / ui / jcr / JcrImages.java
1 /*
2 * Copyright (C) 2007-2012 Argeo GmbH
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16 package org.argeo.eclipse.ui.jcr;
17
18 import org.eclipse.swt.graphics.Image;
19
20 /** Shared icons. */
21 public class JcrImages {
22 public final static Image NODE = JcrUiPlugin.getImageDescriptor(
23 "icons/node.gif").createImage();
24 public final static Image FOLDER = JcrUiPlugin.getImageDescriptor(
25 "icons/folder.gif").createImage();
26 public final static Image FILE = JcrUiPlugin.getImageDescriptor(
27 "icons/file.gif").createImage();
28 public final static Image BINARY = JcrUiPlugin.getImageDescriptor(
29 "icons/binary.png").createImage();
30 public final static Image HOME = JcrUiPlugin.getImageDescriptor(
31 "icons/home.gif").createImage();
32 public final static Image SORT = JcrUiPlugin.getImageDescriptor(
33 "icons/sort.gif").createImage();
34
35 public final static Image REPOSITORIES = JcrUiPlugin.getImageDescriptor(
36 "icons/repositories.gif").createImage();
37 public final static Image REPOSITORY_DISCONNECTED = JcrUiPlugin
38 .getImageDescriptor("icons/repository_disconnected.gif")
39 .createImage();
40 public final static Image REPOSITORY_CONNECTED = JcrUiPlugin
41 .getImageDescriptor("icons/repository_connected.gif").createImage();
42 public final static Image REMOTE_DISCONNECTED = JcrUiPlugin
43 .getImageDescriptor("icons/remote_disconnected.gif").createImage();
44 public final static Image REMOTE_CONNECTED = JcrUiPlugin
45 .getImageDescriptor("icons/remote_connected.gif").createImage();
46 public final static Image WORKSPACE_DISCONNECTED = JcrUiPlugin
47 .getImageDescriptor("icons/workspace_disconnected.png")
48 .createImage();
49 public final static Image WORKSPACE_CONNECTED = JcrUiPlugin
50 .getImageDescriptor("icons/workspace_connected.png").createImage();
51
52 }