Skip to main content



      Home
Home » Archived » Visual Editor (VE) » Expression too complicated exception
Expression too complicated exception [message #130964] Fri, 15 September 2006 10:32
Eclipse UserFriend
Originally posted by: harel.ben-attia.comverse.com

Hi,

i'm getting the following exception all the time (for several similar
expressions).

Does anybody knows if i can ignore these exceptions?

Thanks
RL


org.eclipse.ve.internal.java.core.IAllocationProcesser$Alloc ationException:
java.lang.IllegalArgumentException: IWAV0177E Expression "ti" is too
complicated. -
!((LoadManagerNodeInfo)(ti.getData())).isMonitoringWindowOpe n()
at
org.eclipse.ve.internal.java.core.BasicAllocationProcesser.a llocate(BasicAllocationProcesser.java:164)
at
org.eclipse.ve.internal.java.core.BasicAllocationProcesser.a llocate(BasicAllocationProcesser.java:362)
at
org.eclipse.ve.internal.java.core.PrimitiveProxyAdapter.inst antiateBeanProxy(PrimitiveProxyAdapter.java:287)
at
org.eclipse.ve.internal.java.core.BeanProxyAdapter.instantia teSettingBean(BeanProxyAdapter.java:1011)
at
org.eclipse.ve.internal.java.core.BeanProxyAdapter.instantia teSettingBean(BeanProxyAdapter.java:973)
at
org.eclipse.ve.internal.java.core.BeanProxyAdapter.applySett ing(BeanProxyAdapter.java:771)
at
org.eclipse.ve.internal.swt.WidgetProxyAdapter.applySetting( WidgetProxyAdapter.java:112)
at
org.eclipse.ve.internal.java.core.BeanProxyAdapter.applied(B eanProxyAdapter.java:700)
at
org.eclipse.ve.internal.swt.UIThreadOnlyProxyAdapter.primApp lied(UIThreadOnlyProxyAdapter.java:200)
at
org.eclipse.ve.internal.swt.UIThreadOnlyProxyAdapter.applied (UIThreadOnlyProxyAdapter.java:174)
at
org.eclipse.ve.internal.java.core.BeanProxyAdapter$5.isSet(B eanProxyAdapter.java:495)
at
org.eclipse.jem.internal.instantiation.base.JavaInstance.vis itSetFeatures(JavaInstance.java:70)
at
org.eclipse.ve.internal.java.core.BeanProxyAdapter.applyAllS ettings(BeanProxyAdapter.java:485)
at
org.eclipse.ve.internal.java.core.BeanProxyAdapter.instantia teAndInitialize(BeanProxyAdapter.java:463)
at
org.eclipse.ve.internal.swt.UIThreadOnlyProxyAdapter.primIns tantiateAndInitialize(UIThreadOnlyProxyAdapter.java:163)
at
org.eclipse.ve.internal.swt.UIThreadOnlyProxyAdapter.instant iateAndInitialize(UIThreadOnlyProxyAdapter.java:126)
at
org.eclipse.ve.internal.java.core.BeanProxyAdapter.instantia teBeanProxy(BeanProxyAdapter.java:328)
at
org.eclipse.ve.internal.java.core.BeanProxyAdapter.instantia teSettingBean(BeanProxyAdapter.java:1011)
at
org.eclipse.ve.internal.swt.WidgetProxyAdapter.createItem(Wi dgetProxyAdapter.java:252)
at
org.eclipse.ve.internal.swt.WidgetProxyAdapter.applyItemSett ing(WidgetProxyAdapter.java:202)
at
org.eclipse.ve.internal.swt.WidgetProxyAdapter.applySetting( WidgetProxyAdapter.java:110)
at
org.eclipse.ve.internal.java.core.BeanProxyAdapter.applied(B eanProxyAdapter.java:700)
at
org.eclipse.ve.internal.swt.UIThreadOnlyProxyAdapter.primApp lied(UIThreadOnlyProxyAdapter.java:200)
at
org.eclipse.ve.internal.swt.UIThreadOnlyProxyAdapter.applied (UIThreadOnlyProxyAdapter.java:174)
at
org.eclipse.ve.internal.java.core.BeanProxyAdapter.appliedLi st(BeanProxyAdapter.java:1146)
at
org.eclipse.ve.internal.swt.UIThreadOnlyProxyAdapter.primApp liedList(UIThreadOnlyProxyAdapter.java:237)
at
org.eclipse.ve.internal.swt.WidgetProxyAdapter.primAppliedLi st(WidgetProxyAdapter.java:222)
at
org.eclipse.ve.internal.swt.UIThreadOnlyProxyAdapter.applied List(UIThreadOnlyProxyAdapter.java:211)
at
org.eclipse.ve.internal.java.core.BeanProxyAdapter$5.isSet(B eanProxyAdapter.java:491)
at
org.eclipse.jem.internal.instantiation.base.JavaInstance.vis itSetFeatures(JavaInstance.java:70)
at
org.eclipse.ve.internal.java.core.BeanProxyAdapter.applyAllS ettings(BeanProxyAdapter.java:485)
at
org.eclipse.ve.internal.java.core.BeanProxyAdapter.instantia teAndInitialize(BeanProxyAdapter.java:463)
at
org.eclipse.ve.internal.swt.UIThreadOnlyProxyAdapter.primIns tantiateAndInitialize(UIThreadOnlyProxyAdapter.java:163)
at
org.eclipse.ve.internal.swt.UIThreadOnlyProxyAdapter$2.doRun (UIThreadOnlyProxyAdapter.java:133)
at
org.eclipse.jem.internal.proxy.swt.DisplayManager$Expression DisplayRunnable.run(DisplayManager.java:221)
at
org.eclipse.jem.internal.proxy.swt.DisplayManager$DisplayRun nable.calledBack(DisplayManager.java:141)
at
org.eclipse.jem.internal.proxy.remote.REMCallbackThread.run( REMCallbackThread.java:187)
Caused by: java.lang.IllegalArgumentException: IWAV0177E Expression "ti" is
too complicated. -
!((LoadManagerNodeInfo)(ti.getData())).isMonitoringWindowOpe n()
at
org.eclipse.jem.internal.instantiation.base.ParseTreeAllocat ionInstantiationVisitor.visit(ParseTreeAllocationInstantiati onVisitor.java:398)
at
org.eclipse.jem.internal.instantiation.impl.PTInvalidExpress ionImpl.accept0(PTInvalidExpressionImpl.java:162)
at
org.eclipse.jem.internal.instantiation.impl.PTExpressionImpl .childAccept0(PTExpressionImpl.java:126)
at
org.eclipse.jem.internal.instantiation.impl.PTExpressionImpl .accept(PTExpressionImpl.java:60)
at
org.eclipse.jem.internal.instantiation.base.ParseTreeAllocat ionInstantiationVisitor.getProxy(ParseTreeAllocationInstanti ationVisitor.java:208)
at
org.eclipse.ve.internal.java.core.BasicAllocationProcesser.a llocate(BasicAllocationProcesser.java:160)
.... 36 more
Re: Expression too complicated exception [message #130978 is a reply to message #130964] Fri, 15 September 2006 10:23 Go to previous message
Eclipse UserFriend
Originally posted by: richkulp.us.NO_SPAM.ibm.com

It just means we weren't able to determine what the value of ti is to
perform the operation. For instance if ti is a parameter to the method
that the expression is found in. In that case we don't know what the
value is so we can't evaluate it to determine the value. Since ti is not
a local variable or a field member it won't have a value until actual
execution time in the real world.

These messages can be basically ignored, it just means that you may not
see a value that you would expect because we couldn't evaluate it.
Re: Expression too complicated exception [message #614622 is a reply to message #130964] Fri, 15 September 2006 10:23 Go to previous message
Eclipse UserFriend
Originally posted by: richkulp.us.NO_SPAM.ibm.com

It just means we weren't able to determine what the value of ti is to
perform the operation. For instance if ti is a parameter to the method
that the expression is found in. In that case we don't know what the
value is so we can't evaluate it to determine the value. Since ti is not
a local variable or a field member it won't have a value until actual
execution time in the real world.

These messages can be basically ignored, it just means that you may not
see a value that you would expect because we couldn't evaluate it.
Previous Topic:NEW TUTORIALS NEEDED
Next Topic:Expression too complicated exception
Goto Forum:
  


Current Time: Wed Jun 18 23:58:40 EDT 2025

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

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

Back to the top