Browse Source

fixed JASSIST-212

tags/rel_3_18_2_ga
chibash 10 years ago
parent
commit
457a8b216d
1 changed files with 23 additions and 0 deletions
  1. 23
    0
      src/test/test4/JIRA212.java

+ 23
- 0
src/test/test4/JIRA212.java View File

@@ -0,0 +1,23 @@
package test4;

public class JIRA212 {
public Long id;
public String name;
public void test() {
JIRA212 object = new JIRA212();

object.name = "test"; // get or set string value

try { // in try
object.id = 100L; // get or set long value
String name = object.name; // get or set string value
} catch (Throwable t) {
t.printStackTrace();
}
}

public Long getId() { return id; }
public void setId(Long id) { this.id = id; }
public String getName() { return name; }
public void setName(String name) { this.name = name; }
}

Loading…
Cancel
Save