|
|
|
@ -9,6 +9,7 @@ import com.fr.stable.xml.XMLableReader;
|
|
|
|
|
*/ |
|
|
|
|
public class ComponentReuseNotificationInfo implements XMLable { |
|
|
|
|
public static final String XML_TAG = "ComponentReuseNotificationInfo"; |
|
|
|
|
private static final int INVALID_NUM = -1; |
|
|
|
|
|
|
|
|
|
private static final ComponentReuseNotificationInfo INSTANCE = new ComponentReuseNotificationInfo(); |
|
|
|
|
|
|
|
|
@ -86,6 +87,19 @@ public class ComponentReuseNotificationInfo implements XMLable {
|
|
|
|
|
this.historyCreatedReuses = historyCreatedReuses; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//兼容老版本云端埋点的记录
|
|
|
|
|
public long getLastNotifyTime() { |
|
|
|
|
return INVALID_NUM; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public int getNotifiedNumber() { |
|
|
|
|
return INVALID_NUM; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public long getLastGuidePopUpTime() { |
|
|
|
|
return INVALID_NUM; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public void readXML(XMLableReader reader) { |
|
|
|
|
this.setClickedWidgetLib(reader.getAttrAsBoolean("clickedWidgetLib", false)); |
|
|
|
|