Skip to content

Instantly share code, notes, and snippets.

@nobodxbodon
Created September 18, 2018 23:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nobodxbodon/25fd1d59027181ed317d7ca17ac5f153 to your computer and use it in GitHub Desktop.
Save nobodxbodon/25fd1d59027181ed317d7ca17ac5f153 to your computer and use it in GitHub Desktop.
源码翻译测试用例1
package com.company.example;
import java.io.Serializable;
public class Person implements Serializable {
private static final long serialVersionUID = 1L;
private final Integer id;
private String fullName;
public Integer getId() {
return id;
}
public String getFullName() {
return fullName;
}
public void setFullName(String fullName) {
this.fullName = fullName;
}
public Person(java.lang.Integer id) {
this.id = id;
}
private Person[] getAllChildren() {
return null;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment