-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add helper for integrating elements with a string value (#979)
- Loading branch information
Showing
1 changed file
with
18 additions
and
0 deletions.
There are no files selected for viewing
18 changes: 18 additions & 0 deletions
18
vaadin-testbench/src/main/java/com/vaadin/testbench/HasStringValueProperty.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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
package com.vaadin.testbench; | ||
|
||
public interface HasStringValueProperty extends HasPropertySettersGetters { | ||
|
||
default public String getValue() { | ||
return getPropertyString("value"); | ||
} | ||
|
||
default public void setValue(String string) { | ||
setProperty("value", string); | ||
} | ||
|
||
@Override | ||
default public void clear() { | ||
setValue(""); | ||
} | ||
|
||
} |