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

org.oddjob.arooa.beandocs.ArooaDoc Maven / Gradle / Ivy

There is a newer version: 1.6.0
Show newest version
package org.oddjob.arooa.beandocs;

/**
 * A group of {@link BeanDoc} normally for either Values or Components.
 * 
 * @author rob
 *
 */
public interface ArooaDoc {

	/**
	 * Get all containing {@link BeanDoc}s as an array.
	 * 
	 * @return The docs. Never null.
	 */
	public BeanDoc[] getBeanDocs();

	/**
	 * Get an inividual bean doc {@link BeanDoc}s by namespace prefix
	 * and tag..
	 * 
	 * @param prefixed The namespace prefix. May be null if there is
	 * no prefix.
	 * 
	 * @param tag The tag.
	 * 
	 * @return The doc. May bye null..
	 */
	public BeanDoc beanDocFor(String prefixed, String tag);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy