Package net.sf.okapi.lib.xliff2.core
Class Skeleton
- java.lang.Object
-
- net.sf.okapi.lib.xliff2.core.Skeleton
-
public class Skeleton extends Object
Represents the information associated with the skeleton.
-
-
Constructor Summary
Constructors Constructor Description Skeleton()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddChild(IExtChild child)Adds an extension child to this skeleton.List<IExtChild>getChildren()Gets the list of extension children for this skeleton.StringgetHref()Gets the href for this skeleton.voidsetHref(String href)Sets the href for this skeleton.
-
-
-
Method Detail
-
setHref
public void setHref(String href)
Sets the href for this skeleton.- Parameters:
href- the new href to set (can be null).
-
getHref
public String getHref()
Gets the href for this skeleton.- Returns:
- the href for this skeleton (can be null).
-
addChild
public void addChild(IExtChild child)
Adds an extension child to this skeleton.- Parameters:
child- the extension child object to add.
-
-