blob: 9bb25c288da0d636cb5819f5cfeee5c52fc21d8f [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.configuration;
import org.apache.avalon.Component;
import org.apache.avalon.ConfigurationException;
import org.apache.avalon.Context;
/**
* Class used to configure tasks.
*
* @author <a href="mailto:donaldp@apache.org">Peter Donald</a>
*/
public interface Configurer
extends Component
{
/**
* Configure an object based on a configuration in a particular context.
* This configuring can be done in different ways for different
* configurers.
*
* @param object the object
* @param configuration the configuration
* @param context the Context
* @exception ConfigurationException if an error occurs
*/
void configure( Object object, Configuration configuration, Context context )
throws ConfigurationException;
}