BrightSide Workbench Full Report + Source Code
org.turro.voteit.VoteItInfo Class Reference

Public Member Functions

String getPath ()
 
void setPath (String path)
 
long getPositive ()
 
void setPositive (long positive)
 
long getNegative ()
 
void setNegative (long negative)
 
long getNocare ()
 
void setNocare (long nocare)
 
MyVote getMyVote ()
 
void setMyVote (MyVote myVote)
 
long getVotes ()
 
long getTotalVotes ()
 

Detailed Description

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

Definition at line 25 of file VoteItInfo.java.

Member Function Documentation

◆ getMyVote()

MyVote org.turro.voteit.VoteItInfo.getMyVote ( )

Definition at line 63 of file VoteItInfo.java.

63  {
64  return myVote;
65  }
Here is the caller graph for this function:

◆ getNegative()

long org.turro.voteit.VoteItInfo.getNegative ( )

Definition at line 47 of file VoteItInfo.java.

47  {
48  return negative;
49  }
Here is the caller graph for this function:

◆ getNocare()

long org.turro.voteit.VoteItInfo.getNocare ( )

Definition at line 55 of file VoteItInfo.java.

55  {
56  return nocare;
57  }
Here is the caller graph for this function:

◆ getPath()

String org.turro.voteit.VoteItInfo.getPath ( )

Definition at line 31 of file VoteItInfo.java.

31  {
32  return path;
33  }

◆ getPositive()

long org.turro.voteit.VoteItInfo.getPositive ( )

Definition at line 39 of file VoteItInfo.java.

39  {
40  return positive;
41  }
Here is the caller graph for this function:

◆ getTotalVotes()

long org.turro.voteit.VoteItInfo.getTotalVotes ( )

Definition at line 75 of file VoteItInfo.java.

75  {
76  return positive + nocare + negative;
77  }
Here is the caller graph for this function:

◆ getVotes()

long org.turro.voteit.VoteItInfo.getVotes ( )

Definition at line 71 of file VoteItInfo.java.

71  {
72  return positive - negative;
73  }
Here is the caller graph for this function:

◆ setMyVote()

void org.turro.voteit.VoteItInfo.setMyVote ( MyVote  myVote)

Definition at line 67 of file VoteItInfo.java.

67  {
68  this.myVote = myVote;
69  }
Here is the caller graph for this function:

◆ setNegative()

void org.turro.voteit.VoteItInfo.setNegative ( long  negative)

Definition at line 51 of file VoteItInfo.java.

51  {
52  this.negative = negative;
53  }
Here is the caller graph for this function:

◆ setNocare()

void org.turro.voteit.VoteItInfo.setNocare ( long  nocare)

Definition at line 59 of file VoteItInfo.java.

59  {
60  this.nocare = nocare;
61  }
Here is the caller graph for this function:

◆ setPath()

void org.turro.voteit.VoteItInfo.setPath ( String  path)

Definition at line 35 of file VoteItInfo.java.

35  {
36  this.path = path;
37  }

◆ setPositive()

void org.turro.voteit.VoteItInfo.setPositive ( long  positive)

Definition at line 43 of file VoteItInfo.java.

43  {
44  this.positive = positive;
45  }
Here is the caller graph for this function:

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