![JAR search and dependency download from the Maven repository](/logo.png)
org.oddjob.arooa.beandocs.ArooaDoc Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of arooa Show documentation
Show all versions of arooa Show documentation
A Rip Off Of Ant - A drag and drop component framework.
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