0

I am Working with GWT and eclipse. I am facing a problem . The design mode of eclipse is not working. I am using the eclipse 3.7 . Where is the problem?

3 Answers3

0

One way to see design view is extending the view part. you can try this one.

public class test extends ViewPart {

    public test() {
        // TODO Auto-generated constructor stub
    }

    @Override
    public void createPartControl(Composite parent) {
        // TODO Auto-generated method stub    
    }    
    @Override
    public void setFocus() {            

    }

}
Dinup Kandel
  • 2,457
  • 4
  • 21
  • 38
0

You need to right click the file you want to open, then click open with --> GWT Designer.

Steven Morad
  • 2,511
  • 3
  • 19
  • 25
0

Make sure your resource exclusion filters are not too strict.

If you are using Maven, the issue is explained here.

Community
  • 1
  • 1
Felix Lechner
  • 468
  • 5
  • 11