Skip to content

Commit 0fc2659

Browse files
authored
Create Items.java
1 parent 6f69053 commit 0fc2659

File tree

1 file changed

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

1 file changed

+20
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
package com.example.android.dailygoals;
2+
3+
/**
4+
* Created by kmurali on 11-04-2018.
5+
*/
6+
7+
public class Items {
8+
private String text;
9+
public Items(String text)
10+
{
11+
this.text=text;
12+
}
13+
public String getText() {
14+
return text;
15+
}
16+
17+
public void setText(String text) {
18+
this.text = text;
19+
}
20+
}

0 commit comments

Comments
 (0)