Package net.java.sip.communicator.service.protocol.OperationSetMessageWaiting

Examples of net.java.sip.communicator.service.protocol.OperationSetMessageWaiting.MessageType


     *
     * @param evt the notification event.
     */
    public void messageWaitingNotify(MessageWaitingEvent evt)
    {
        MessageType type = evt.getMessageType();

        NotificationGroup group = groups.get(type);

        if (group == null)
        {
View Full Code Here


     *
     * @param evt the notification event.
     */
    public void messageWaitingNotify(MessageWaitingEvent evt)
    {
        MessageType type = evt.getMessageType();

        NotificationGroup group = groups.get(type.toString());

        if (group == null)
        {
            String displayName;
            if (type.equals(MessageType.VOICE))
                displayName = GuiActivator.getResources()
                    .getI18NString("service.gui.VOICEMAIL_TITLE");
            else
                displayName = type.toString();

            group = new NotificationGroup(displayName);
            groups.put(type.toString(), group);
        }

        // mark it as global box by not providing list of messages.
        group.messageWaitingNotify(
            new MessageWaitingEvent(evt.getSourceProvider(),
View Full Code Here

     *
     * @param evt the notification event.
     */
    public void messageWaitingNotify(MessageWaitingEvent evt)
    {
        MessageType type = evt.getMessageType();

        NotificationGroup group = groups.get(type);

        if (group == null)
        {
View Full Code Here

     *
     * @param evt the notification event.
     */
    public void messageWaitingNotify(MessageWaitingEvent evt)
    {
        MessageType type = evt.getMessageType();

        NotificationGroup group = groups.get(type.toString());

        if (group == null)
        {
            String displayName;
            if (type.equals(MessageType.VOICE))
                displayName = GuiActivator.getResources()
                    .getI18NString("service.gui.VOICEMAIL_TITLE");
            else
                displayName = type.toString();

            group = new NotificationGroup(displayName);
            groups.put(type.toString(), group);
        }

        // mark it as global box by not providing list of messages.
        group.messageWaitingNotify(
            new MessageWaitingEvent(evt.getSourceProvider(),
View Full Code Here

TOP

Related Classes of net.java.sip.communicator.service.protocol.OperationSetMessageWaiting.MessageType

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.