java - Cannot instantiate the type List -
i getting erorr "cannot instantiate type list" when use below code:
list = new list(floatshell, swt.border | swt.multi | swt.h_scroll | swt.v_scroll);
but example given here: https://gist.github.com/suxiaogang/6311176d2c5b9a8d1867
what mistake have made?
you did import java.util.list;
when need import org.eclipse.swt.widgets.list;
Comments
Post a Comment