general style improvements + javadoc
This commit is contained in:
@ -6,11 +6,12 @@ import lombok.Value;
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Value
|
||||
public class CreateGroupEvent extends Event {
|
||||
String groupTitle, groupDescription;
|
||||
String groupTitle;
|
||||
String groupDescription;
|
||||
|
||||
public CreateGroupEvent(long event_id, long group_id, String user_id, String groupTitle, String groupDescription) {
|
||||
super(event_id, group_id, user_id);
|
||||
this.groupTitle = groupTitle;
|
||||
this.groupDescription = groupDescription;
|
||||
}
|
||||
public CreateGroupEvent(long event_id, long group_id, String user_id, String groupTitle, String groupDescription) {
|
||||
super(event_id, group_id, user_id);
|
||||
this.groupTitle = groupTitle;
|
||||
this.groupDescription = groupDescription;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user