Bug 164903 - VE fails to parse simple Composite file
Summary: VE fails to parse simple Composite file
Status: NEW
Alias: None
Product: z_Archived
Classification: Eclipse Foundation
Component: VE (show other bugs)
Version: unspecified   Edit
Hardware: PC Windows XP
: P3 normal (vote)
Target Milestone: ---   Edit
Assignee: Dave Orme CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-11-16 18:45 EST by William Byrne CLA
Modified: 2011-06-13 11:37 EDT (History)
0 users

See Also:


Attachments
Stack trace from .log (1.12 KB, text/plain)
2006-11-16 18:49 EST, William Byrne CLA
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description William Byrne CLA 2006-11-16 18:45:59 EST
Here's the info:

  - "Parse Error" displayed in eclipse status bar.

  - class derived from org.eclipse.swt.widgets.Composite

  - cause narrowed to ancillary method not part of form initialization
 
  - cause further narrowed to indirection

This fails:
-----------
   page.getBindingWizard().setCondition((String)obj);

This succeeds:
--------------
   BindingWizard bindingWizard = page.getBindingWizard();
   bindingWizard.setCondition((String)obj);
Comment 1 William Byrne CLA 2006-11-16 18:49:07 EST
Created attachment 54042 [details]
Stack trace from .log