BiVeS-Core
the core of BiVeS
View the Project on GitHub
Format-Independent Make-Up for reports
abstract mark up stuff to generate reports
MarkUp Interface
used to markup certain atomic objects (which for example represent formulars/units/quantities etc.)
to add report independent markup use static methods in
MarkupDocument
see
/src/main/java/de/unirostock/sems/bives/markup/Markup.java
and
JavaDoc
Markup Document
represents a document that can be layouted in different formats (e.g.
HTML
or
MarkDown
)
provides static methods to insert format independent markup:
highlight
: emphasizes a string (e.g. special word)
rightArrow
: produces a right arrow (e.g. -> or →)
multiply
: produces a multiply symbol (e.g. * or ·)
insert
: highlight something that was inserted
delete
: highlight something that was inserted
attribute
: markup an attribute
see
/src/main/java/de/unirostock/sems/bives/markup/MarkupDocument.java
and
JavaDoc