02-01-2010 08:03 AM
02-01-2010 09:07 AM
02-01-2010 10:00 AM
var index,
current = [],
currentSet = node.aspectsSet.toArray();
for (index in currentSet)
{
current.push(currentSet[index].toString());
}
02-05-2010 09:57 PM
02-18-2010 09:54 AM
/**
* Retrieves all the properties defined on an aspect.
*
* @param anAspect
* @return a list of propertiesnames.
*/
public List<String> retrievePropertiesForAspect(String anAspect) {
QName aspectQname = QName.createQName(anAspect);
AspectDefinition aspectDefinition = getDictionaryService().getAspect(aspectQname);
Map<QName, PropertyDefinition> props = aspectDefinition.getProperties();
Set<QName> keys = props.keySet();
List<String> propertyQNames = new ArrayList<String>();
for (QName q : keys) {
propertyQNames.add(q.toString());
}
return propertyQNames;
}
02-18-2010 09:57 AM
<bean id="myCustomScriptSupport" parent="baseJavaScriptExtension" class="be.ordina.myCustomScriptSupport">
<property name="extensionName">
<value>myCustomScriptSupport</value>
</property>
</bean>
02-18-2010 10:54 AM
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.