/**
*
*/
protected void populateContentVersionValues() throws WorkflowException
{
final ContentVersionValues result = new ContentVersionValues();
final List contentTypeAttributes = getContentTypeAttributes();
for(Iterator i=contentTypeAttributes.iterator(); i.hasNext(); )
{
final ContentTypeAttribute attribute = (ContentTypeAttribute) i.next();
result.set(attribute.getName(), populate(CONTENT_VERSION_PROPERTYSET_PREFIX + attribute.getName()));
}
setParameter(CONTENT_VERSION_VALUES_PARAMETER, result);
}