getActions(String type)
{
java.util.List actions = new java.util.ArrayList();
for (Action action : getActions())
{
if ( action.getType() != null && action.getType().equalsIgnoreCase( type ) )
{
actions.add( action );
}
}
return actions;
}
]]>
components = new java.util.ArrayList();
public void addComponent(String name, Release release)
{
final Component component = new Component();
component.setName(name);
component.setDescription(release.getDescription());
component.setActions(release.getActions());
components.add(component);
}
public java.util.List getComponents()
{
return components;
}
]]>
See the changes-report mojo for more details.
]]>See the changes-report mojo for more details.
]]>
See the changes-report mojo for more details.
]]>