blob: f696f484741a46416d4e82fad1c7a0c8612e9a63 [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 java.util.Iterator;
/**
* Fork of Avalon code that will be folded back when they get equivelent facilties.
* Note that the code is different package so it should not cause any issues.
*
* @author <a href="mailto:donaldp@apache.org">Peter Donald</a>
*/
public interface Configuration
extends org.apache.avalon.Configuration
{
/**
* Retrieve a list of all child names.
*
* @return the child names
*/
Iterator getChildren();
/**
* Retrieve a list of all attribute names.
*
* @return the attribute names
*/
Iterator getAttributeNames();
}