|
|
@ -38,6 +38,9 @@ public class FocusPointMessageUploader extends AbstractSendDataToCloud { |
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
@Override |
|
|
|
public <T> JSONArray dealWithSendFunctionContent(DataList<T> focusPoints) { |
|
|
|
public <T> JSONArray dealWithSendFunctionContent(DataList<T> focusPoints) { |
|
|
|
|
|
|
|
if (focusPoints == null) { |
|
|
|
|
|
|
|
return null; |
|
|
|
|
|
|
|
} |
|
|
|
JSONArray ja = new JSONArray(); |
|
|
|
JSONArray ja = new JSONArray(); |
|
|
|
for(T t:focusPoints.getList()){ |
|
|
|
for(T t:focusPoints.getList()){ |
|
|
|
FocusPoint focusPoint = (FocusPoint)t; |
|
|
|
FocusPoint focusPoint = (FocusPoint)t; |
|
|
|