1 /* 2 * This file is a part of CAST project. 3 * (c) Copyright 2007, AGH University of Science & Technology 4 * https://caribou.iisg.agh.edu.pl/trac/cast 5 * 6 * Licensed under the Eclipse Public License, Version 1.0 (the "License"). 7 * You may not use this file except in compliance with the License. 8 * You may obtain a copy of the License at 9 * http://www.eclipse.org/legal/epl-v10.html 10 */ 11 /* 12 * File: ImageVariants.java 13 * Created: 2009-07-17 14 * Author: kpietak 15 * $Id$ 16 */ 17 18 package pl.edu.agh.cast.resource; 19 20 /** 21 * Just a simple holder for visual resource variants constants. For more details see {@link IVisualResource}. 22 * 23 * @author AGH CAST Team 24 */ 25 public class ImageVariants { 26 27 /** 28 * Common resource variant - opened. 29 */ 30 public static final String VARIANT_OPENED = "opened"; //$NON-NLS-1$ 31 32 /** 33 * Common resource variant - closed. 34 */ 35 public static final String VARIANT_CLOSED = "closed"; //$NON-NLS-1$ 36 37 /** 38 * Common resource variant - disabled. 39 */ 40 public static final String VARIANT_DISABLED = "disabled"; //$NON-NLS-1$ 41 }