All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sapia.util.xml.confix.ObjectHandlerIF Maven / Gradle / Ivy

The newest version!
package org.sapia.util.xml.confix;


/**
 * An instance of this interface handles objects that corresponds to given XML
 * elements.
 *
 * @author JC Desrochers
 *
 * 
*
Copyright:
Copyright © 2002-2003 Sapia Open Source Software. All Rights Reserved.
*
License:
Read the license.txt file of the jar or visit the * license page at the Sapia OSS web site
*
*/ public interface ObjectHandlerIF { /** * Handles the passed in object that was created for the element name passed in. * * @param anElementName The xml element name for which the object was created. * @param anObject The object to handle. * * @throws ConfigurationException if this instance does not "know" (cannot handle) the * passed in object/element name. */ public void handleObject(String anElementName, Object anObject) throws ConfigurationException; }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy