Class SimpleFontSetFamily
- java.lang.Object
-
- net.sf.jasperreports.engine.fonts.SimpleFontSetFamily
-
- All Implemented Interfaces:
Cloneable
,FontSetFamily
,JRCloneable
public class SimpleFontSetFamily extends Object implements FontSetFamily
- Author:
- Lucian Chirita (lucianc@users.sourceforge.net)
-
-
Constructor Summary
Constructors Constructor Description SimpleFontSetFamily()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addExcludedScript(String script)
void
addIncludedScript(String script)
Object
clone()
List<String>
getExcludedScripts()
String
getFamilyName()
List<String>
getIncludedScripts()
boolean
isPrimary()
void
setExcludedScripts(List<String> excludedScripts)
void
setFamilyName(String familyName)
void
setIncludedScripts(List<String> includedScripts)
void
setPrimary(boolean primary)
-
-
-
Method Detail
-
getFamilyName
public String getFamilyName()
- Specified by:
getFamilyName
in interfaceFontSetFamily
-
setFamilyName
public void setFamilyName(String familyName)
-
isPrimary
public boolean isPrimary()
- Specified by:
isPrimary
in interfaceFontSetFamily
-
setPrimary
public void setPrimary(boolean primary)
-
getIncludedScripts
public List<String> getIncludedScripts()
- Specified by:
getIncludedScripts
in interfaceFontSetFamily
-
addIncludedScript
public void addIncludedScript(String script)
-
getExcludedScripts
public List<String> getExcludedScripts()
- Specified by:
getExcludedScripts
in interfaceFontSetFamily
-
addExcludedScript
public void addExcludedScript(String script)
-
clone
public Object clone()
- Specified by:
clone
in interfaceJRCloneable
- Overrides:
clone
in classObject
-
-