aboutsummaryrefslogtreecommitdiff
path: root/usage_examples/ToStringExample_post.jpage
diff options
context:
space:
mode:
Diffstat (limited to 'usage_examples/ToStringExample_post.jpage')
-rw-r--r--usage_examples/ToStringExample_post.jpage26
1 files changed, 26 insertions, 0 deletions
diff --git a/usage_examples/ToStringExample_post.jpage b/usage_examples/ToStringExample_post.jpage
new file mode 100644
index 00000000..f348e0dc
--- /dev/null
+++ b/usage_examples/ToStringExample_post.jpage
@@ -0,0 +1,26 @@
+import java.util.Arrays;
+
+public class ToStringExample {
+ private static final int STATIC_VAR = 10;
+ private String name;
+ private Shape shape = new Square(5, 10);
+ private String[] tags;
+ private int id;
+
+ public static class Square extends Shape {
+ private final int width, height;
+
+ public Square(int width, int height) {
+ this.width = width;
+ this.height = height;
+ }
+
+ @Override public String toString() {
+ return "Square(super=" + super.toString() + ", width=" + width + ", height=" + height + ")";
+ }
+ }
+
+ @Override public String toString() {
+ return "ToStringExample(" + name + ", " + shape + ", " + Arrays.deepToString(tags) + ")";
+ }
+}