Package com.iizix.text
Class ValidationKStringInfoProviderHolder
java.lang.Object
com.iizix.text.ValidationKStringInfoProviderHolder
- All Implemented Interfaces:
IKStringInfoProvider
,IKStringInfoProviderHolder
public class ValidationKStringInfoProviderHolder extends 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
ConstructorDescriptionValidationKStringInfoProviderHolder
(GProp<?> anyProp, String targetLanguageCode) Constructor.Method Summary
Modifier and TypeMethodDescriptionboolean
Gets the flag for adding the reference string in an attribute when editing the KString.double
getDPR()
Gets the device pixel ratio.Gets the HTTP Server string prefix including port.getImageTarget
(String ref) Gets the image reference.Retrieves the KStringInfoProvider.GProp<?>
Gets the property used for references look-up's.Gets the base reference name for the resource, typically an image, for the Server or the Designer.Gets the language code to use.boolean
installFont
(String fontFamily) Installs the font families as specified by the font family.boolean
installFonts
(String fontFamilies) Installs the font families as specified by the font family.boolean
installFonts
(List<FontFiles> fontList) Installs the font face as specified by theFontFiles
instance for the Client Session.boolean
Flag indicating the "real" resolved string should be returned.
Constructor Details
ValidationKStringInfoProviderHolder
Constructor.- Parameters:
anyProp
- Any property for resolving references.targetLanguageCode
- Target language code when working with multiple text files.
Method Details
getKStringInfoProvider
Retrieves the KStringInfoProvider.- Specified by:
getKStringInfoProvider
in interfaceIKStringInfoProviderHolder
- Returns:
- This instance.
getHTTPServer
Gets the HTTP Server string prefix including port.- Specified by:
getHTTPServer
in interfaceIKStringInfoProvider
- Returns:
- The "http://localhost".
getImageTarget
Gets the image reference.- Specified by:
getImageTarget
in 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:
doAddReference
in interfaceIKStringInfoProvider
- Returns:
- References in attributes should not be added, hence
false
is 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:
shouldResolve
in interfaceIKStringInfoProvider
- Returns:
- Always
true
as KString's should resolve.
getResolveReferenceProperty
Gets the property used for references look-up's.- Specified by:
getResolveReferenceProperty
in interfaceIKStringInfoProvider
- Returns:
- Any property in the tree.
getDPR
public double getDPR()Gets the device pixel ratio.- Specified by:
getDPR
in interfaceIKStringInfoProvider
- Returns:
- The device pixel ratio = 1.0d.
getTargetLanguageCode
Gets the language code to use.- Specified by:
getTargetLanguageCode
in interfaceIKStringInfoProvider
- Returns:
- The language code, or null for default.
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:
getResourcePrefix
in interfaceIKStringInfoProvider
- Returns:
- Always "/$".
installFont
Installs the font families as specified by the font family.- Specified by:
installFont
in interfaceIKStringInfoProvider
- Parameters:
fontFamily
- The font family or families.- Returns:
- Always
false
as fonts are not supported.
installFonts
Installs the font families as specified by the font family.- Specified by:
installFonts
in interfaceIKStringInfoProvider
- Parameters:
fontFamilies
- The font family or families, comma separated.- Returns:
- Always
false
as fonts are not supported.
installFonts
Installs the font face as specified by theFontFiles
instance for the Client Session. Once installed, the font family can be used.- Specified by:
installFonts
in interfaceIKStringInfoProvider
- Parameters:
fontList
- The list of font files to install.- Returns:
- Always
false
as fonts are not supported.