Skip to content

Commit

Permalink
Extract StringBean
Browse files Browse the repository at this point in the history
  • Loading branch information
KochTobi committed Jan 20, 2025
1 parent f7598c5 commit 975fea9
Showing 1 changed file with 22 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
package life.qbic.datamanager.views;

public class StringBean {

private String value;

public StringBean() {
this.value = "";
}

public StringBean(String value) {
this.value = value;
}

public String getValue() {
return value;
}

public void setValue(String value) {
this.value = value;
}
}

0 comments on commit 975fea9

Please sign in to comment.