Package com.adobe.cq.dam.cfm
Interface VariationTemplate
-
public interface VariationTemplate
Implementations of this interface allow accessing a variation template in a standardized way, without requiring knowledge about the underlying content structure.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getDescription()
Gets the (human-readable) description of the variation templatejava.lang.String
getName()
Gets the (technical) name of the variation template.java.lang.String
getTitle()
Gets the (human-readable) title of the variation template.void
setDescription(java.lang.String description)
Sets the description of the variation template.void
setTitle(java.lang.String title)
Sets the title of the variation template.
-
-
-
Method Detail
-
getName
java.lang.String getName()
Gets the (technical) name of the variation template.- Returns:
- The name
-
getTitle
java.lang.String getTitle()
Gets the (human-readable) title of the variation template.- Returns:
- The title
-
getDescription
java.lang.String getDescription()
Gets the (human-readable) description of the variation template- Returns:
- The (human-readable) description of the variation
-
setTitle
void setTitle(java.lang.String title)
Sets the title of the variation template.- Parameters:
title
- The new title
-
setDescription
void setDescription(java.lang.String description)
Sets the description of the variation template.- Parameters:
description
- The new title
-
-