Package com.iizix.text
Class ValidationKStringInfoProviderHolder
- java.lang.Object
- com.iizix.text.ValidationKStringInfoProviderHolder
- All Implemented Interfaces:
IKStringInfoProvider,IKStringInfoProviderHolder
public class ValidationKStringInfoProviderHolder extends java.lang.Object implements IKStringInfoProvider, IKStringInfoProviderHolder
Very simple adapter to provide information required by KString's when resolving KString's for validation. Image resolving and so on is not supported. Installing fonts is not supported either.- Author:
- Christopher Mindus
Constructor Summary
Constructors Constructor Description ValidationKStringInfoProviderHolder(GProp<?> anyProp, java.lang.String targetLanguageCode)Constructor.
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleandoAddReference()Gets the flag for adding the reference string in an attribute when editing the KString.doublegetDPR()Gets the device pixel ratio.java.lang.StringgetHTTPServer()Gets the HTTP Server string prefix including port.IImageTargetgetImageTarget(java.lang.String ref)Gets the image reference.IKStringInfoProvidergetKStringInfoProvider()Retrieves the KStringInfoProvider.GProp<?>getResolveReferenceProperty()Gets the property used for references look-up's.java.lang.StringgetResourcePrefix()Gets the base reference name for the resource, typically an image, for the Server or the Designer.java.lang.StringgetTargetLanguageCode()Gets the language code to use.booleaninstallFont(java.lang.String fontFamily)Installs the font families as specified by the font family.booleaninstallFonts(java.lang.String fontFamilies)Installs the font families as specified by the font family.booleaninstallFonts(java.util.List<FontFiles> fontList)Installs the font face as specified by theFontFilesinstance for the Client Session.booleanshouldResolve()Flag indicating the "real" resolved string should be returned.
Constructor Detail
ValidationKStringInfoProviderHolder
public ValidationKStringInfoProviderHolder(GProp<?> anyProp, java.lang.String targetLanguageCode)
Constructor.- Parameters:
anyProp- Any property for resolving references.targetLanguageCode- Target language code when working with multiple text files.
Method Detail
getKStringInfoProvider
public IKStringInfoProvider getKStringInfoProvider()
Retrieves the KStringInfoProvider.- Specified by:
getKStringInfoProviderin interfaceIKStringInfoProviderHolder- Returns:
- This instance.
getHTTPServer
public java.lang.String getHTTPServer()
Gets the HTTP Server string prefix including port.- Specified by:
getHTTPServerin interfaceIKStringInfoProvider- Returns:
- The "http://localhost".
getImageTarget
public IImageTarget getImageTarget(java.lang.String ref)
Gets the image reference.- Specified by:
getImageTargetin interfaceIKStringInfoProvider- Parameters:
ref- The image definition reference string.- Returns:
- The image found, or null if not found.
doAddReference
public boolean doAddReference()
Gets the flag for adding the reference string in an attribute when editing the KString.- Specified by:
doAddReferencein interfaceIKStringInfoProvider- Returns:
- References in attributes should not be added, hence
falseis returned.
shouldResolve
public boolean shouldResolve()
Flag indicating the "real" resolved string should be returned. This value is true for the runtime client when in "real run mode".- Specified by:
shouldResolvein interfaceIKStringInfoProvider- Returns:
- Always
trueas KString's should resolve.
getResolveReferenceProperty
public GProp<?> getResolveReferenceProperty()
Gets the property used for references look-up's.- Specified by:
getResolveReferencePropertyin interfaceIKStringInfoProvider- Returns:
- Any property in the tree.
getDPR
public double getDPR()
Gets the device pixel ratio.- Specified by:
getDPRin interfaceIKStringInfoProvider- Returns:
- The device pixel ratio = 1.0d.
getTargetLanguageCode
public java.lang.String getTargetLanguageCode()
Gets the language code to use.- Specified by:
getTargetLanguageCodein interfaceIKStringInfoProvider- Returns:
- The language code, or null for default.
getResourcePrefix
public java.lang.String getResourcePrefix()
Gets the base reference name for the resource, typically an image, for the Server or the Designer. This reference is "/$" (the default in this interface) for the Designer, but should be "/$APPID/" for the Server, where APPID is the application being run by the client. The Server must therefore implement this method and return that string instead.- Specified by:
getResourcePrefixin interfaceIKStringInfoProvider- Returns:
- Always "/$".
installFont
public boolean installFont(java.lang.String fontFamily)
Installs the font families as specified by the font family.- Specified by:
installFontin interfaceIKStringInfoProvider- Parameters:
fontFamily- The font family or families.- Returns:
- Always
falseas fonts are not supported.
installFonts
public boolean installFonts(java.lang.String fontFamilies)
Installs the font families as specified by the font family.- Specified by:
installFontsin interfaceIKStringInfoProvider- Parameters:
fontFamilies- The font family or families, comma separated.- Returns:
- Always
falseas fonts are not supported.
installFonts
public boolean installFonts(java.util.List<FontFiles> fontList)
Installs the font face as specified by theFontFilesinstance for the Client Session. Once installed, the font family can be used.- Specified by:
installFontsin interfaceIKStringInfoProvider- Parameters:
fontList- The list of font files to install.- Returns:
- Always
falseas fonts are not supported.