Class AutoLinkFormatter
java.lang.Object
net.sf.basedb.clients.web.formatter.AutoLinkFormatter
Formatter implementation that generates a HTML output trying to
link items with best supported method depending on their type.
Files are linked with
Base.getLinkedFile(String, File, boolean, boolean, boolean, String)
and with a FileViewerUtil
if it is available
Nameable items are linked with Base.getLinkedName(String, Nameable, boolean, boolean)
Other items are linked with Base.getLink(String, String, Item, int, boolean)
- Since:
- 3.17
- Author:
- nicklas
- See Also:
-
Field Summary
Modifier and TypeFieldDescriptionprivate final boolean
private final boolean
private final FileViewerUtil
-
Constructor Summary
ConstructorDescriptionAutoLinkFormatter
(boolean enableEditLink, boolean enableViewDownload) AutoLinkFormatter
(FileViewerUtil fileViewer) -
Method Summary
-
Field Details
-
enableEditLink
private final boolean enableEditLink -
enableViewDownload
private final boolean enableViewDownload -
fileViewer
-
-
Constructor Details
-
AutoLinkFormatter
public AutoLinkFormatter() -
AutoLinkFormatter
-
AutoLinkFormatter
public AutoLinkFormatter(boolean enableEditLink, boolean enableViewDownload)
-
-
Method Details
-
format
Description copied from interface:Formatter
Format a value by converting it to a string. -
parseString
Description copied from interface:Formatter
Parse a string and return a value of the correct type. A null input string should (unless otherwise documented by a specific formatter implementation) be allowed and may return null or any other "default" value.- Specified by:
parseString
in interfaceFormatter<BasicItem>
- Parameters:
value
- The string to parse- Returns:
- An object
-