Class TocLink
- java.lang.Object
-
- coza.opencollab.epub.creator.model.TocLink
-
public class TocLink extends Object
Represents a link in the table of contents, this object can have nested child links- Author:
- OpenCollab
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getAltTitle()
String
getHref()
String
getTitle()
List<TocLink>
getTocChildLinks()
void
setAltTitle(String altTitle)
void
setHref(String href)
void
setTitle(String title)
void
setTocChildLinks(List<TocLink> tocChildLinks)
-
-
-
Method Detail
-
getHref
public String getHref()
- Returns:
- the href
-
setHref
public void setHref(String href)
- Parameters:
href
- the href to set
-
getTitle
public String getTitle()
- Returns:
- the title
-
setTitle
public void setTitle(String title)
- Parameters:
title
- the title to set
-
getAltTitle
public String getAltTitle()
- Returns:
- the altTitle
-
setAltTitle
public void setAltTitle(String altTitle)
- Parameters:
altTitle
- the altTitle to set
-
-