Design.java
1.83 KB
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
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* aQute.bnd.annotation.ProviderType
* com.day.cq.commons.Doctype
* javax.jcr.RepositoryException
* javax.servlet.jsp.PageContext
* org.apache.sling.api.resource.Resource
*/
package com.day.cq.wcm.api.designer;
import aQute.bnd.annotation.ProviderType;
import com.day.cq.commons.Doctype;
import com.day.cq.wcm.api.designer.Cell;
import com.day.cq.wcm.api.designer.ComponentStyle;
import com.day.cq.wcm.api.designer.Style;
import java.io.IOException;
import java.io.Writer;
import java.util.Calendar;
import java.util.Map;
import javax.jcr.RepositoryException;
import javax.servlet.jsp.PageContext;
import org.apache.sling.api.resource.Resource;
@ProviderType
public interface Design {
public static final String PN_DOCTYPE = "cq:doctype";
public static final String NN_STYLES = "cq:styles";
public static final String PN_STYLE_EXCLUDED_COMPONENTS = "cq:styleExcludedComponents";
public String getPath();
public String getId();
public Resource getContentResource();
public boolean hasContent();
public Style getStyle(String var1);
public Style getStyle(Cell var1);
public Style getStyle(Resource var1);
public Style getStyle(Resource var1, boolean var2);
public String getCssPath();
public String getStaticCssPath();
public void writeCssIncludes(Writer var1) throws IOException;
public void writeCssIncludes(Writer var1, Doctype var2) throws IOException;
public void writeCssIncludes(PageContext var1) throws IOException;
public void writeCSS(Writer var1, boolean var2) throws IOException, RepositoryException;
public Doctype getDoctype(Style var1);
public Map<String, ComponentStyle> getComponentStyles(Cell var1);
public String getJSON();
public Calendar getLastModified();
}