Searched refs:sRecent (Results 1 – 1 of 1) sorted by relevance
76 private static List<String> sRecent = new LinkedList<String>(); field in BaseViewRule578 if (sRecent.contains(property)) { in editedProperty()579 sRecent.remove(property); in editedProperty()580 } else if (sRecent.size() > MAX_RECENT_COUNT) { in editedProperty()581 sRecent.remove(sRecent.size() - 1); in editedProperty()583 sRecent.add(0, property); in editedProperty()593 for (String attribute : sRecent) { in addRecentPropertyActions()