Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'apitools/org.eclipse.pde.api.tools.tests/test-builder/tags/method/class/test20.java')
-rw-r--r--apitools/org.eclipse.pde.api.tools.tests/test-builder/tags/method/class/test20.java23
1 files changed, 23 insertions, 0 deletions
diff --git a/apitools/org.eclipse.pde.api.tools.tests/test-builder/tags/method/class/test20.java b/apitools/org.eclipse.pde.api.tools.tests/test-builder/tags/method/class/test20.java
new file mode 100644
index 0000000000..6f306db3b9
--- /dev/null
+++ b/apitools/org.eclipse.pde.api.tools.tests/test-builder/tags/method/class/test20.java
@@ -0,0 +1,23 @@
+/*******************************************************************************
+ * Copyright (c) 2008 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+
+/**
+ * Test supported @nooverride tag on private class methods in the default package
+ */
+public class test20 {
+ /**
+ * @nooverride This method is not intended to be re-implemented or extended by clients.
+ * @return
+ */
+ private int m1() {
+ return 0;
+ }
+}

Back to the top