-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adjust structure of InteractionDescription
- move form member - adjust namings - remove TD-dependencies
- Loading branch information
florence
committed
Jun 2, 2023
1 parent
0081040
commit 8e89853
Showing
5 changed files
with
96 additions
and
104 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 0 additions & 8 deletions
8
src/main/java/ch/unisg/ics/interactions/wot/td/interaction/InteractionInput.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,12 @@ | ||
package ch.unisg.ics.interactions.wot.td.interaction; | ||
|
||
import ch.unisg.ics.interactions.wot.td.affordances.Form; | ||
import ch.unisg.ics.interactions.wot.td.schemas.DataSchema; | ||
import lombok.Getter; | ||
import lombok.RequiredArgsConstructor; | ||
|
||
@Getter | ||
@RequiredArgsConstructor | ||
public class InteractionInput { | ||
|
||
public InteractionInput(Form form) { | ||
this.form = form; | ||
this.value = null; | ||
this.schema = null; | ||
} | ||
private final Object value; | ||
private final Form form; | ||
private final DataSchema schema; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters