docs: improve docs and add explanation for flux (#2928)

This commit is contained in:
Ilkka Seppälä
2024-04-21 18:07:52 +03:00
committed by GitHub
parent ab1a30ba69
commit dabf40e1bb
7 changed files with 115 additions and 30 deletions
@@ -24,19 +24,18 @@
*/
package com.iluwatar.flux.action;
import lombok.Getter;
/**
* ContentAction is a concrete action.
*/
public class ContentAction extends Action {
@Getter
private final Content content;
public ContentAction(Content content) {
super(ActionType.CONTENT_CHANGED);
this.content = content;
}
public Content getContent() {
return content;
}
}