/** * $RCSfile: ,v $ * $Revision: $ * $Date: $ * * Copyright (C) 2004-2011 Jive Software. All rights reserved. * * 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.jivesoftware.resource; import javax.swing.ImageIcon; import java.net.URL; import java.util.PropertyResourceBundle; import java.util.ResourceBundle; public class SoundsRes { private static PropertyResourceBundle prb; public static final String INCOMING_USER = "INCOMING_USER"; public static final String TRAY_SHOWING = "TRAY_SHOWING"; public static final String OPENING = "OPENING"; public static final String CLOSING = "CLOSING"; static ClassLoader cl = SoundsRes.class.getClassLoader(); static { prb = (PropertyResourceBundle)ResourceBundle.getBundle("org/jivesoftware/resource/sounds"); } public static String getString(String propertyName) { return prb.getString(propertyName); } public static ImageIcon getImageIcon(String imageName) { final String iconURI = getString(imageName); final URL imageURL = cl.getResource(iconURI); return new ImageIcon(imageURL); } public static URL getURL(String propertyName) { return cl.getResource(getString(propertyName)); } }