From 8b7a7cbc813653a3248d6cf3a7779e220957bc85 Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Mon, 8 May 2017 21:28:02 +0200 Subject: The great rename: the old ‘website’ is now ‘website-old’, and ‘website2’ is now ‘website’. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../usageExamples/ConstructorExample_post.jpage | 28 ---------------------- 1 file changed, 28 deletions(-) delete mode 100644 website2/usageExamples/ConstructorExample_post.jpage (limited to 'website2/usageExamples/ConstructorExample_post.jpage') diff --git a/website2/usageExamples/ConstructorExample_post.jpage b/website2/usageExamples/ConstructorExample_post.jpage deleted file mode 100644 index 8a2d5069..00000000 --- a/website2/usageExamples/ConstructorExample_post.jpage +++ /dev/null @@ -1,28 +0,0 @@ -public class ConstructorExample { - private int x, y; - @NonNull private T description; - - private ConstructorExample(T description) { - if (description == null) throw new NullPointerException("description"); - this.description = description; - } - - public static ConstructorExample of(T description) { - return new ConstructorExample(description); - } - - @java.beans.ConstructorProperties({"x", "y", "description"}) - protected ConstructorExample(int x, int y, T description) { - if (description == null) throw new NullPointerException("description"); - this.x = x; - this.y = y; - this.description = description; - } - - public static class NoArgsExample { - @NonNull private String field; - - public NoArgsExample() { - } - } -} -- cgit