Buisness logic docs packages
This commit is contained in:
@ -79,7 +79,8 @@ public class MatchData {
|
||||
* Exchanges 12:00 and 12:00
|
||||
*
|
||||
* @param m1 MatchData instance to compare to
|
||||
* @return int <0 if m1 is "less than", 0 if it's equal and >0 otherwise
|
||||
* @return int less than 0 if m1 is "less than", 0 if it's equal and more than 0
|
||||
* otherwise
|
||||
*/
|
||||
public int compare(MatchData m1) {
|
||||
return Long.compare(m1.getExchangesMsValue(), this.getExchangesMsValue());
|
||||
|
@ -39,7 +39,7 @@ public class UserApiResponse {
|
||||
* setter for surname. Reson to have setters for this class is for case if there
|
||||
* would be name and no surname or otherwise
|
||||
*
|
||||
* @param surname name to set that was obtained by api request
|
||||
* @param name name to set that was obtained by api request
|
||||
*/
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
|
6
buisnesslogic/src/main/java/com/plannaplan/models/package-info.java
Executable file
6
buisnesslogic/src/main/java/com/plannaplan/models/package-info.java
Executable file
@ -0,0 +1,6 @@
|
||||
/**
|
||||
* Provides readonly (mostly) classes to keep data for diffrent pourposes
|
||||
*
|
||||
* @since 1.0
|
||||
*/
|
||||
package com.plannaplan.models;
|
Reference in New Issue
Block a user