简体   繁体   English

Eclipse和GWT设计模式

[英]Eclipse and GWT desing mode

I am Working with GWT and eclipse. 我正在使用GWT和Eclipse。 I am facing a problem . 我面临的一个问题。 The design mode of eclipse is not working. Eclipse的设计模式不起作用。 I am using the eclipse 3.7 . 我正在使用eclipse 3.7。 Where is the problem? 问题出在哪儿?

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() {            

    }

}

您需要右键单击要打开的文件,然后单击-> GWT Designer打开。

Make sure your resource exclusion filters are not too strict. 确保您的资源排除过滤条件不太严格。

If you are using Maven, the issue is explained here . 如果您使用的是Maven,则在此说明问题

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM