> Less than a minute after posting, I stumbled upon the Java compiler's error
> which turned out to be equivalent to a certain spelling corrector message:
> "Did you mean to spell 'Mississippi?'"
> That answered the question. Never mind.
> -30-
> On Fri, Jul 18, 2008 at 6:50 PM, Jeff Chimene <jchim...@gmail.com> wrote:
> > Hi,
> > Would some kind soul please correct the parameter type signature for the
> > call to arrayConvert?
> > -30-
> > package com.example.client;
> > import com.google.gwt.core.client.EntryPoint;
> > public class Checksheet implements EntryPoint {
> > public Checksheet ChecksheetParts[] = null;
> > public Checksheet() {}
> > private static JavaScriptObject arrayConvert(Checksheet[] array) {
> > return null;
> > }
> > private native void insert() /*-{
> > *var ChecksheetParts = th...@com.example.client.Checksheet
> > ::arrayConvert([com/example/client/Checksheet;)(ChecksheetParts);*
> > }-*/;
> > public void onModuleLoad() {
> > throw new UnsupportedOperationException("Not supported yet.");
> > }
> > }