mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 08:31:29 +00:00
Java Uast: Initial implementation
This commit is contained in:
15
plugins/uast-java/testData/Simple.java
vendored
Normal file
15
plugins/uast-java/testData/Simple.java
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
class Simple {
|
||||
private String name;
|
||||
|
||||
public Simple(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user