org.apache.hivemind.schema
Interface Rule

public interface Rule
extends Locatable
Rules associated with Schema elements. As the SchemaProcessor works through the Element hiearchy, it invokes methods on the Rules.
SinceNot specified.
VersionNot specified.
AuthorHoward M. Lewis Ship
Wiki javadoc Use textile entry format.
Add your comments here.
Method Summary
void begin( SchemaProcessor processor, Element element )
Begin rules are fired first, in order.
void end( SchemaProcessor processor, Element element )
End rules are fired last, in inverse order.
Methods inherited from org.apache.hivemindLocatable
begin
public void begin ( SchemaProcessor processor, Element element )
Begin rules are fired first, in order. All rules are invoked, and then the SchemaProcessor recurses into the elements contained within the element.
Parameters
TypeNameDescription
SchemaProcessor processor No description provided.
Element element No description provided.
Returns void No description provided.
Wiki javadoc Use textile entry format.
Add your comments here.
end
public void end ( SchemaProcessor processor, Element element )
End rules are fired last, in inverse order.
Parameters
TypeNameDescription
SchemaProcessor processor No description provided.
Element element No description provided.
Returns void No description provided.
Wiki javadoc Use textile entry format.
Add your comments here.