Open GoogleCodeExporter opened 8 years ago
As complex structure was not in our scope, we have not managed that.
Please attach a simple Java class model which causes this problem. Thank's
Original comment by angelo.z...@gmail.com
on 6 Oct 2014 at 2:32
Here is a java class model that presents the problem. Sorry i couldn't attach a
small sample project, as there is a "Issue attacement storage quota exceeded"
on this project :)
I generate xml using FieldsMetadata.saveXML and generate json using
fr.opensagres.xdocreport.document.tools.Main
The root class is Project
fieldsMetadata.load("p", Project.class);
public class Commit {
private String commitId;
public String getCommitId() {
return commitId;
}
public void setCommitId(String commitId) {
this.commitId = commitId;
}
}
public class Activity{
private Date lastLogin;
private List<Commit> commits;
public List<Commit> getCommits() {
return commits;
}
public void setCommits(List<Commit> commits) {
this.commits = commits;
}
public Date getLastLogin() {
return lastLogin;
}
public void setLastLogin(Date lastLogin) {
this.lastLogin = lastLogin;
}
}
public class Developer{
private String login;
private Activity activity;
public String getLogin() {
return login;
}
public void setLogin(String login) {
this.login = login;
}
public Activity getActivity() {
return activity;
}
public void setActivity(Activity activity) {
this.activity = activity;
}
}
public class Project {
private String name;
private List<Developer> developers;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public List<Developer> getDevelopers() {
return developers;
}
public void setDevelopers(List<Developer> developers) {
this.developers = developers;
}
}
Original comment by tch...@gmail.com
on 7 Oct 2014 at 11:39
Ok thank's for your explanation. I will see this problem when I will find time
-(
> "Issue attacement storage quota exceeded"
Pascal will see this problem.
Original comment by angelo.z...@gmail.com
on 7 Oct 2014 at 12:18
Original issue reported on code.google.com by
tch...@gmail.com
on 6 Oct 2014 at 2:29