blob: 4cc24b290eb9a599f3dc4284ff5f8dece80990d6 [file] [log] [blame]
/*
* Copyright (C) The Apache Software Foundation. All rights reserved.
*
* This software is published under the terms of the Apache Software License
* version 1.1, a copy of which has been included with this distribution in
* the LICENSE file.
*/
package org.apache.ant.modules.test;
import org.apache.ant.AntException;
import org.apache.ant.tasklet.AbstractTasklet;
/**
* This is to test whether content is added.
*
* @author <a href="mailto:donaldp@apache.org">Peter Donald</a>
*/
public class ContentTest
extends AbstractTasklet
{
public void addContent( final Integer value )
{
getLogger().warn( "Integer content: " + value );
}
/*
public void addContent( final String blah )
{
System.out.println( "String: " + blah );
}
*/
public void run()
throws AntException
{
}
}