use of org.whole.lang.workflows.model.StringLiteral in project whole by wholeplatform.
the class WorkflowsUIContentAssistVisitor method allSignatures.
protected boolean allSignatures(IEntity entity) {
if (!WorkflowsUtils.isSignatureInJavaActivity(entity))
return false;
IEntity parent = entity.wGetParent();
boolean isMethod = !Matcher.match(CreateJavaClassInstance, parent);
boolean isStatic = Matcher.match(InvokeJavaClassMethod, parent);
IEntity classNameEntity = parent.wGet(className);
if (!Matcher.matchImpl(StringLiteral, classNameEntity))
return false;
String className = classNameEntity.wStringValue();
Class<?> declaringClass = null;
try {
declaringClass = JavaReflectUtils.forName(className, getClassLoader());
} catch (IllegalArgumentException e) {
return false;
}
ActionsUIEntityFactory aef = ActionsUIEntityFactory.instance;
GroupAction signaturesGroup = aef.createGroupAction();
signaturesGroup.setFillStrategy(aef.createHierarchical(aef.createDistinctPrefix(), aef.createSize(20)));
signaturesGroup.getText().setValue("workflows.signatures");
Actions actions = aef.createActions(0);
WorkflowsEntityFactory wef = WorkflowsEntityFactory.instance;
if (isMethod) {
for (Method method : declaringClass.getMethods()) if (isStatic == Modifier.isStatic(method.getModifiers())) {
JavaSignature signature = JavaReflectUtils.fromMethod(method);
StringLiteral literal = wef.createStringLiteral(JavaReflectUtils.unparse(signature));
actions.wAdd(aef.createReplaceDifferentTemplateAction(literal, WorkflowsUtils.unparseCompact(signature), calculateImageDescriptor(parent)));
}
} else {
for (Constructor<?> constructor : declaringClass.getConstructors()) {
JavaSignature signature = JavaReflectUtils.fromConstructor(constructor);
StringLiteral literal = wef.createStringLiteral(JavaReflectUtils.unparse(signature));
actions.wAdd(aef.createReplaceDifferentTemplateAction(literal, WorkflowsUtils.unparseCompact(signature), calculateImageDescriptor(parent)));
}
}
signaturesGroup.setActions(actions);
return EntityUtils.isResolver(entity) ? mergeResult(StringLiteral, signaturesGroup) : mergeResult(signaturesGroup);
}
use of org.whole.lang.workflows.model.StringLiteral in project whole by wholeplatform.
the class WorkflowsUIContentAssistVisitor method allEntityTypes.
protected boolean allEntityTypes(IEntity entity) {
if (!WorkflowsUtils.isEntityTypeInCreateEntity(entity))
return false;
ActionsUIEntityFactory aef = ActionsUIEntityFactory.instance;
GroupAction languagesGroup = aef.createGroupAction();
languagesGroup.setFillStrategy(aef.createHierarchical(aef.createDistinctPrefix(), aef.createSize(10)));
languagesGroup.getText().setValue("workflows.languages");
Actions actions = aef.createActions(0);
WorkflowsEntityFactory wef = WorkflowsEntityFactory.instance;
String actualLanguageURI = "";
String actualEntityName = "";
EntityDescriptor<?> actualED = null;
try {
if (Matcher.matchImpl(StringLiteral, entity)) {
StringLiteral literal = (StringLiteral) entity;
actualED = CommonsDataTypePersistenceParser.parseEntityDescriptor(literal.getValue());
actualLanguageURI = actualED.getLanguageKit().getURI();
actualEntityName = actualED.getName();
}
} catch (Exception e) {
}
IResourceRegistry<ILanguageKit> registry = ReflectionFactory.getLanguageKitRegistry();
for (ILanguageKit languageKit : registry.getResources(false, ResourceUtils.SIMPLE_COMPARATOR)) {
if (languageKit.getURI().equals(actualLanguageURI))
continue;
EntityDescriptorEnum edEnum = languageKit.getEntityDescriptorEnum();
EntityDescriptor<?> ed = null;
if (actualEntityName.length() > 0)
ed = edEnum.valueOf(actualEntityName);
if (ed == null)
ed = edEnum.valueOf(0);
StringLiteral prototype = wef.createStringLiteral(CommonsDataTypePersistenceParser.unparseEntityDescriptor(ed));
actions.wAdd(aef.createReplaceDifferentTemplateAction(prototype, ResourceUtils.SIMPLE_NAME_PROVIDER.toString(registry, languageKit), IActionConstants.SELECT_LANGUAGE_ICON));
}
languagesGroup.setActions(actions);
boolean adeddLanguages = EntityUtils.isResolver(entity) ? mergeResult(StringLiteral, languagesGroup) : mergeResult(languagesGroup);
if (actualED != null) {
GroupAction typenamesGroup = aef.createGroupAction();
typenamesGroup.setFillStrategy(aef.createHierarchical(aef.createDistinctPrefix(), aef.createSize(10)));
typenamesGroup.getText().setValue("workflows.typenames");
actions = aef.createActions(0);
EntityDescriptorEnum edEnum = actualED.getEntityDescriptorEnum();
List<EntityDescriptor<?>> eds = new ArrayList<EntityDescriptor<?>>(edEnum.values());
Collections.sort(eds, new Comparator<EntityDescriptor<?>>() {
public int compare(EntityDescriptor<?> ed1, EntityDescriptor<?> ed2) {
return ed1.getName().compareTo(ed2.getName());
}
});
for (EntityDescriptor<?> ed : eds) {
if (ed.equals(actualED))
continue;
StringLiteral prototype = wef.createStringLiteral(CommonsDataTypePersistenceParser.unparseEntityDescriptor(ed));
actions.wAdd(aef.createReplaceDifferentTemplateAction(prototype, ed.getName()));
}
typenamesGroup.setActions(actions);
adeddLanguages |= EntityUtils.isResolver(entity) ? mergeResult(StringLiteral, typenamesGroup) : mergeResult(typenamesGroup);
}
return adeddLanguages;
}
Aggregations