Skip to content

Commit 038f4e7

Browse files
authored
Create Items2.java
1 parent d046232 commit 038f4e7

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 Items2 {
4+
private int image2;
5+
public Items2(int image2)
6+
{
7+
this.image2=image2;
8+
}
9+
public int getImage() {
10+
return image2;
11+
}
12+
13+
public void setImage(int image2) {
14+
this.image2 = image2;
15+
}
16+
}

0 commit comments

Comments
 (0)