org.locomotive.directory
Interface BeanParser

All Known Implementing Classes:
XmlBeanParser

public interface BeanParser

Interface to an object responsible for parsing a single bean configuration file and building the appropriate BeanConfiguration structure.

Version:
$Id: BeanParser.java,v 1.4 1999/05/05 10:19:31 gunnar Exp $
Author:
Gunnar Rønning (gunnar@candleweb.no).

Method Summary
 void parseBeanConfiguration(java.lang.String fileName, BeanConfiguration beanConfig)
          Parse a bean property configuration file and build the approriate BeanConfiguration structure.
 

Method Detail

parseBeanConfiguration

public void parseBeanConfiguration(java.lang.String fileName,
                                   BeanConfiguration beanConfig)
Parse a bean property configuration file and build the approriate BeanConfiguration structure. The method can be called several times with the same bean configuration structure, and will the update the structure to reflect the changes introduced by the new file.
Parameters:
fileName - The fileName of the configuration file.
beanConfig - The beanConfig structure to build/modify.