Skip to main content



      Home
Home » Eclipse Projects » WindowBuilder » Re: How add restriction to delete a component
Re: How add restriction to delete a component [message #902629] Thu, 16 August 2012 13:41
Eclipse UserFriend
IIRC "isComponentType" is available only for flow/simple containers.
And if there is any error in "canDelete" script, we consider this as "false".


In other scripts you have only ReflectionUtils class.
But actually all this can be done using ReflectionUtils, see org.eclipse.wb.internal.core.model.generic.ContainerObjectValidators.DEF_functions

[code][ private static final String DEF_functions = StringUtils.join(new String[]{
"def isModelType(model, c) {",
" if (c is String) {",
" return ReflectionUtils.isSuccessorOf((Class) model.description.componentClass, c);",
" } else {",
" return c.isAssignableFrom(model.description.componentClass);",
" }",
"};",
"def isSuccessorOf(o, c) {",
" if (c is String) {",
" return ReflectionUtils.isSuccessorOf(o, c);",
" } else {",
" return o != null && c.isAssignableFrom(o.getClass());",
" }",
"};",
"def isComponentType(c) {",
" return isModelType(component, c);",
"};",
"def isReferenceType(c) {",
" return isModelType(reference, c);",
"};",
"def isContainerType(c) {",
" return isModelType(container, c);",
"};",
"def isContainerThis() {",
" return isSuccessorOf(container.creationSupport, "
+ "'org.eclipse.wb.internal.core.model.creation.ThisCreationSupport');",
"};",}, "\n");
/code]
--
Konstantin Scheglov,
Google, Inc.
Previous Topic:Re: How add restriction to delete a component
Next Topic:Re: How add restriction to delete a component
Goto Forum:
  


Current Time: Thu Mar 20 08:41:01 EDT 2025

Powered by FUDForum. Page generated in 0.02653 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top