Skip to content

Commit

Permalink
Merge PresentationField into Field
Browse files Browse the repository at this point in the history
  • Loading branch information
wsargent committed Dec 19, 2024
1 parent c2a44b3 commit ed002fd
Show file tree
Hide file tree
Showing 27 changed files with 199 additions and 527 deletions.
2 changes: 1 addition & 1 deletion api/src/main/java/echopraxia/api/DefaultField.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
*
* @since 3.0
*/
public class DefaultField implements PresentationField {
public class DefaultField implements Field {

protected final String name;
protected final Value<?> value;
Expand Down
3 changes: 2 additions & 1 deletion api/src/main/java/echopraxia/api/Field.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@
* <p>The field builder interface and custom field builders go a long way to building up more
* complex structures, please see documentation for how to use them.
*/
public interface Field extends FieldBuilderResult {
public interface Field
extends FieldBuilderResult, PresentationHints<Field>, AttributesAware<Field> {

/**
* The field name.
Expand Down
4 changes: 0 additions & 4 deletions api/src/main/java/echopraxia/api/PresentationField.java

This file was deleted.

Loading

0 comments on commit ed002fd

Please sign in to comment.