BiodbHtmlEntry {biodb} | R Documentation |
Entry class for content in HTML format.
Entry class for content in HTML format.
This is an abstract class for handling database entries whose content is in HTML format.
biodb::BiodbEntry
-> biodb::BiodbXmlEntry
-> BiodbHtmlEntry
new()
New instance initializer. Entry objects must not be created directly. Instead, they are retrieved through the connector instances.
BiodbHtmlEntry$new(...)
...
All parameters are passed to the super class initializer.
Nothing.
clone()
The objects of this class are cloneable with this method.
BiodbHtmlEntry$clone(deep = FALSE)
deep
Whether to make a deep clone.
Super class BiodbXmlEntry
.
# Create a concrete entry class inheriting from this class: MyEntry <- R6::R6Class("MyEntry", inherit=biodb::BiodbHtmlEntry)