ClientLibrary.java
819 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
/*
* Decompiled with CFR 0_118.
*/
package com.day.cq.widget;
import com.day.cq.widget.LibraryType;
import java.util.Map;
import java.util.Set;
@Deprecated
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();
}