我正在尝试在GWT中创建嵌套的演示者。 我一直在样本GWTP项目中“复制并粘贴”代码@http://code.google.com/p/gwt-platform/wiki/SimpleNestedSample
代码
@ContentSlot
public static final Type<RevealContentHandler<?>> contentSlot = new Type<RevealContentHandler<?>>();
给了我错误,我无法找到通过eclipse建议导入哪个包来解决类型错误。 (通过eclipse建议尝试所有可能的“类型”包 import com.google.gwt.i18n.server.Type; import com.google.gwt.dev.asm.Type; import com.sun.tools.javac.code.Type;
)
有人能说出要导入的包吗?
答案 0 :(得分:1)
import com.google.gwt.event.shared.GwtEvent.Type;