BrightSide Workbench Full Report + Source Code
org.turro.jpa.embeddables.Wiki Class Reference
Inheritance diagram for org.turro.jpa.embeddables.Wiki:
Collaboration diagram for org.turro.jpa.embeddables.Wiki:

Public Member Functions

String getText ()
 
void setText (String text)
 
String getWiki ()
 
void setWiki (String wiki)
 
boolean isEmpty ()
 
void compose (IConstructor constructor)
 

Detailed Description

Author
Lluis TurrĂ³ Cutiller lluis.nosp@m.@tur.nosp@m.ro.or.nosp@m.g

Definition at line 34 of file Wiki.java.

Member Function Documentation

◆ compose()

void org.turro.jpa.embeddables.Wiki.compose ( IConstructor  constructor)

Definition at line 66 of file Wiki.java.

66  {
67  if(getWiki() != null) {
68  setText(WikiCompiler.source(getWiki()).constructor(constructor).html());
69  } else {
70  setText(null);
71  }
72  }
void setText(String text)
Definition: Wiki.java:48
Here is the call graph for this function:
Here is the caller graph for this function:

◆ getText()

String org.turro.jpa.embeddables.Wiki.getText ( )

Definition at line 44 of file Wiki.java.

44  {
45  return text;
46  }
Here is the caller graph for this function:

◆ getWiki()

String org.turro.jpa.embeddables.Wiki.getWiki ( )

Definition at line 52 of file Wiki.java.

52  {
53  return wiki;
54  }
Here is the caller graph for this function:

◆ isEmpty()

boolean org.turro.jpa.embeddables.Wiki.isEmpty ( )

Definition at line 62 of file Wiki.java.

62  {
63  return Strings.isBlank(wiki) ;
64  }
Here is the caller graph for this function:

◆ setText()

void org.turro.jpa.embeddables.Wiki.setText ( String  text)

Definition at line 48 of file Wiki.java.

48  {
49  this.text = text;
50  }
Here is the caller graph for this function:

◆ setWiki()

void org.turro.jpa.embeddables.Wiki.setWiki ( String  wiki)

Definition at line 56 of file Wiki.java.

56  {
57  this.wiki = wiki;
58  }

The documentation for this class was generated from the following file: