From 0d2465cdb969f10b4fdaa2d39b426e6cd152985b Mon Sep 17 00:00:00 2001 From: Stefan Bodewig Date: Wed, 15 Oct 2003 13:20:29 +0000 Subject: [PATCH] Condition is an interface git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@275503 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/CoreTypes/custom-programming.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/manual/CoreTypes/custom-programming.html b/docs/manual/CoreTypes/custom-programming.html index d6c1e9830..b87dd8ebe 100644 --- a/docs/manual/CoreTypes/custom-programming.html +++ b/docs/manual/CoreTypes/custom-programming.html @@ -56,7 +56,7 @@ package com.mydomain; import org.apache.tools.ant.BuildException; import org.apache.tools.ant.taskdefs.condition.Condition; -public class AllUpperCaseCondition extends Condition { +public class AllUpperCaseCondition implements Condition { private String value; // The setter for the "value" attribute