package org.japura.gui; import java.net.URL; /** * Copyright (C) 2008-2015 Carlos Eduardo Leite de Andrade * <P> * This library is free software: you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any * later version. * <P> * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * <P> * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see <A * HREF="www.gnu.org/licenses/">www.gnu.org/licenses/</A> * <P> * For more information, contact: <A HREF="www.japura.org">www.japura.org</A> * <P> * * @author Carlos Eduardo Leite de Andrade */ public final class GUIImages { public static final URL COLLAPSE_BLACK = GUIImages.class .getResource("/images/jpr_clp_black.png"); public static final URL EXPAND_BLACK = GUIImages.class .getResource("/images/jpr_exp_black.png"); public static final URL COLLAPSE_WHITE = GUIImages.class .getResource("/images/jpr_clp_white.png"); public static final URL EXPAND_WHITE = GUIImages.class .getResource("/images/jpr_exp_white.png"); public static final URL CALENDAR = GUIImages.class .getResource("/images/jpr_calendar.png"); public static final URL LINK_HAND = GUIImages.class .getResource("/images/jpr_link_hand.gif"); public static final URL WARNING = GUIImages.class .getResource("/images/jpr_alert.png"); public static final URL INFORMATION = GUIImages.class .getResource("/images/jpr_info.png"); public static final URL ERROR = GUIImages.class .getResource("/images/jpr_error.png"); public static final URL QUESTION = GUIImages.class .getResource("/images/jpr_question.png"); }