forked from Luis-R-Ramirez/bluetoothArduinoAndroid
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathItem.java
More file actions
46 lines (32 loc) · 707 Bytes
/
Copy pathItem.java
File metadata and controls
46 lines (32 loc) · 707 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
package com.example.interfaz;
/**
* Created with IntelliJ IDEA.
* User: luis
* Date: 9/10/13
* Time: 22:03
* To change this template use File | Settings | File Templates.
*/
public class Item {
private Integer image;
private String title;
public Item() {
super();
}
public Item(Integer image, String title) {
super();
this.image = image;
this.title = title;
}
public Integer getImage() {
return image;
}
public void setImage(Integer image) {
this.image = image;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
}