Made selected bool public
Made bool selected public in order for App.java able to access this information
This commit is contained in:
parent
77d6ffc825
commit
9e411823a2
@ -6,13 +6,13 @@ import org.json.JSONObject;
|
||||
|
||||
public class HistoryEntry {
|
||||
|
||||
public String url = "",
|
||||
title = "",
|
||||
dir = "";
|
||||
public int count = 0;
|
||||
public Date startDate = new Date(),
|
||||
modifiedDate = new Date();
|
||||
boolean selected = false;
|
||||
public String url = "",
|
||||
title = "",
|
||||
dir = "";
|
||||
public int count = 0;
|
||||
public Date startDate = new Date(),
|
||||
modifiedDate = new Date();
|
||||
public boolean selected = false;
|
||||
|
||||
public HistoryEntry() {
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user