org.apache.fontbox.afm
public class: Ligature [javadoc |
source]
java.lang.Object
org.apache.fontbox.afm.Ligature
This class represents a ligature, which is an entry of the CharMetrics.
- author:
Ben
- Litchfield (ben@benlitchfield.com)
- version:
$
- Revision: 1.1 $
Methods from java.lang.Object: |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method from org.apache.fontbox.afm.Ligature Detail: |
public String getLigature() {
return ligature;
}
Getter for property ligature. |
public String getSuccessor() {
return successor;
}
Getter for property successor. |
public void setLigature(String lig) {
ligature = lig;
}
Setter for property ligature. |
public void setSuccessor(String successorValue) {
successor = successorValue;
}
Setter for property successor. |