BrightSide Workbench Full Report + Source Code
All Classes Namespaces Files Functions Variables Pages
org.turro.assistant.AssistantConstants Class Reference

Static Public Member Functions

static String all ()
 
static String participants ()
 
static String subscribers ()
 

Static Public Attributes

static final String FROM_COMMENTS = "from-comments"
 

Detailed Description

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

Definition at line 25 of file AssistantConstants.java.

Member Function Documentation

◆ all()

static String org.turro.assistant.AssistantConstants.all ( )
static

Definition at line 34 of file AssistantConstants.java.

34  {
35  return new StringBuffer()
36  .append(FROM_COMMENTS)
37  .append(",")
38  .append(FROM_VOTES)
39  .append(",")
40  .append(FROM_SUBSCRIPTIONS)
41  .append(",")
42  .append(FROM_STUDENTS)
43  .append(",")
44  .append(FROM_FORUM)
45  .toString();
46  }
Here is the caller graph for this function:

◆ participants()

static String org.turro.assistant.AssistantConstants.participants ( )
static

Definition at line 48 of file AssistantConstants.java.

48  {
49  return new StringBuffer()
50  .append(FROM_COMMENTS)
51  .append(",")
52  .append(FROM_VOTES)
53  .append(",")
54  .append(FROM_STUDENTS)
55  .append(",")
56  .append(FROM_FORUM)
57  .toString();
58  }
Here is the caller graph for this function:

◆ subscribers()

static String org.turro.assistant.AssistantConstants.subscribers ( )
static

Definition at line 60 of file AssistantConstants.java.

60  {
61  return new StringBuffer()
62  .append(FROM_SUBSCRIPTIONS)
63  .append(",")
64  .append(FROM_STUDENTS)
65  .toString();
66  }

Member Data Documentation

◆ FROM_COMMENTS

final String org.turro.assistant.AssistantConstants.FROM_COMMENTS = "from-comments"
static

Definition at line 28 of file AssistantConstants.java.


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