aboutsummaryrefslogtreecommitdiffstats
path: root/src/net/java/sip/communicator/impl/gui/utils/SoundProperties.java
blob: e9a6e8a4b5f733b894fd126bf542c02a18ddebdc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
/*
 * SIP Communicator, the OpenSource Java VoIP and Instant Messaging client.
 *
 * Distributable under LGPL license.
 * See terms of license at gnu.org.
 */
package net.java.sip.communicator.impl.gui.utils;

import net.java.sip.communicator.impl.gui.*;

/**
 * Manages the access to the properties file containing all sounds paths.
 * 
 * @author Yana Stamcheva
 */
public class SoundProperties
{
    public static String INCOMING_MESSAGE
        = GuiActivator.getResources().getSoundPath("INCOMING_MESSAGE");

    public static String OUTGOING_CALL
        = GuiActivator.getResources().getSoundPath("OUTGOING_CALL");

    public static String INCOMING_CALL
        = GuiActivator.getResources().getSoundPath("INCOMING_CALL");

    public static String DIAL_ZERO
        = GuiActivator.getResources().getSoundPath("DIAL_ZERO");

    public static String DIAL_ONE
        = GuiActivator.getResources().getSoundPath("DIAL_ONE");

    public static String DIAL_TWO
        = GuiActivator.getResources().getSoundPath("DIAL_TWO");

    public static String DIAL_THREE
        = GuiActivator.getResources().getSoundPath("DIAL_THREE");

    public static String DIAL_FOUR
        = GuiActivator.getResources().getSoundPath("DIAL_FOUR");

    public static String DIAL_FIVE
        = GuiActivator.getResources().getSoundPath("DIAL_FIVE");

    public static String DIAL_SIX
        = GuiActivator.getResources().getSoundPath("DIAL_SIX");

    public static String DIAL_SEVEN
        = GuiActivator.getResources().getSoundPath("DIAL_SEVEN");

    public static String DIAL_EIGHT
        = GuiActivator.getResources().getSoundPath("DIAL_EIGHT");

    public static String DIAL_NINE
        = GuiActivator.getResources().getSoundPath("DIAL_NINE");

    public static String DIAL_DIEZ
        = GuiActivator.getResources().getSoundPath("DIAL_DIEZ");

    public static String DIAL_STAR
        = GuiActivator.getResources().getSoundPath("DIAL_STAR");

    public static String BUSY
        = GuiActivator.getResources().getSoundPath("BUSY");

    public static String ZRTP_SECURE
    = GuiActivator.getResources().getSoundPath("ZRTP_SECURE");

    public static String ZRTP_ALERT
    = GuiActivator.getResources().getSoundPath("ZRTP_ALERT");

    private static final String BUNDLE_NAME 
        = "net.java.sip.communicator.impl.gui.utils.sounds";

    private SoundProperties() {
    }
}