Skip to content

Commit 46d8d07

Browse files
authored
Create Items1.java
1 parent 0fc2659 commit 46d8d07

File tree

1 file changed

+16
-0
lines changed
  • app/src/main/java/com/example/dhananjay/dailygoals

1 file changed

+16
-0
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
package com.example.android.dailygoals;
2+
3+
public class Items1 {
4+
private String text;
5+
public Items1(String text)
6+
{
7+
this.text=text;
8+
}
9+
public String getText() {
10+
return text;
11+
}
12+
13+
public void setText(String text) {
14+
this.text = text;
15+
}
16+
}

0 commit comments

Comments
 (0)