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?
Asked
Active
Viewed 92 times
0
-
Make sure that you have installed plugin in eclipse – thar45 Aug 29 '12 at 04:20
-
What the mean by not working? Are you not able to install it? or After installation you are facing some error, please explain in datail – Sanjay Jain Aug 29 '12 at 05:25
3 Answers
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