blob: f4822e8e3d736979ff380db734744dc733aeaa8e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/*
* Jitsi, the OpenSource Java VoIP and Instant Messaging client.
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package net.java.sip.communicator.service.resources;
/**
*
* @author Damian Minkov
*/
public interface SettingsPack
extends ResourcePack
{
public String RESOURCE_NAME_DEFAULT_VALUE = "DefaultSettingsPack";
}
|