aboutsummaryrefslogtreecommitdiffstats
path: root/src/test/test4/JIRA212.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/test4/JIRA212.java')
-rw-r--r--src/test/test4/JIRA212.java23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/test/test4/JIRA212.java b/src/test/test4/JIRA212.java
new file mode 100644
index 00000000..4c532d00
--- /dev/null
+++ b/src/test/test4/JIRA212.java
@@ -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; }
+}