FragmentTemplate.java
1.01 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
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* aQute.bnd.annotation.ProviderType
* org.apache.sling.api.adapter.Adaptable
*/
package com.adobe.cq.dam.cfm;
import aQute.bnd.annotation.ProviderType;
import com.adobe.cq.dam.cfm.ContentElement;
import com.adobe.cq.dam.cfm.ContentVariation;
import com.adobe.cq.dam.cfm.ElementTemplate;
import com.adobe.cq.dam.cfm.MetaDataDefinition;
import com.adobe.cq.dam.cfm.VariationTemplate;
import java.util.Iterator;
import org.apache.sling.api.adapter.Adaptable;
@ProviderType
public interface FragmentTemplate
extends Adaptable {
public String getTitle();
public String getDescription();
public Iterator<ElementTemplate> getElements();
public ElementTemplate getForElement(ContentElement var1);
public Iterator<VariationTemplate> getVariations();
public VariationTemplate getForVariation(ContentVariation var1);
public Iterator<String> getInitialAssociatedContent();
public MetaDataDefinition getMetaDataDefinition();
}