Skip to content

Commit 7365199

Browse files
authored
Add files via upload
1 parent 2a1fdca commit 7365199

File tree

4 files changed

+80
-0
lines changed

4 files changed

+80
-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.dhananjay.dailygoals;
2+
3+
/**
4+
* Created by kmurali on 13-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+
}
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
package com.example.dhananjay.dailygoals;
2+
3+
/**
4+
* Created by kmurali on 13-04-2018.
5+
*/
6+
7+
public class Items1 {
8+
private String text;
9+
public Items1(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+
}
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
package com.example.dhananjay.dailygoals;
2+
3+
/**
4+
* Created by kmurali on 13-04-2018.
5+
*/
6+
7+
public class Items2 {
8+
private int image2;
9+
public Items2(int image2)
10+
{
11+
this.image2=image2;
12+
}
13+
public int getImage() {
14+
return image2;
15+
}
16+
17+
public void setImage(int image2) {
18+
this.image2 = image2;
19+
}
20+
}
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
package com.example.dhananjay.dailygoals;
2+
3+
/**
4+
* Created by kmurali on 13-04-2018.
5+
*/
6+
7+
public class Items3 {
8+
private int image3;
9+
public Items3(int image3)
10+
{
11+
this.image3=image3;
12+
}
13+
public int getImage() {
14+
return image3;
15+
}
16+
17+
public void setImage(int image3) {
18+
this.image3 = image3;
19+
}
20+
}

0 commit comments

Comments
 (0)