ClientLibrary.java
973 Bytes
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
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* aQute.bnd.annotation.ProviderType
*/
package com.adobe.granite.ui.clientlibs;
import aQute.bnd.annotation.ProviderType;
import com.adobe.granite.ui.clientlibs.LibraryType;
import java.util.Map;
import java.util.Set;
@ProviderType
public interface ClientLibrary {
public String getPath();
public String getIncludePath(LibraryType var1);
public String getIncludePath(LibraryType var1, boolean var2);
public Set<LibraryType> getTypes();
public String getThemeName();
public String getThemeLibId();
public String[] getCategories();
public String[] getEmbeddedCategories();
public String[] getDependentCategories();
public String[] getChannels();
public Map<String, ? extends ClientLibrary> getDependencies(boolean var1);
public Map<String, ? extends ClientLibrary> getEmbedded(LibraryType var1);
public boolean allowProxy();
}