Quantcast
Channel: SmartClient Forums
Viewing all articles
Browse latest Browse all 4756

WARN addInterfaceProperties()

$
0
0
SmartClient Version: SNAPSHOT_v9.1d_2013-11-30/EVAL Deployment (expires 2014.01.29_11.14.49) Licensed to: Isomorphic Software (#ISC_EVAL_NIGHTLY)

GWT 2.5.0

Firefox 25.0.1

Since using 4.1 nightly builds to overcome some issues, we keep getting this error on application start-up. Can't tell if it is actually causing a problem, but is a distraction in the logs. Can it be fixed?

Code:

00:00:10.200 [ERROR] 16:53:25.385:WARN:PickList:Use addInterfaceProperties() to add methods to interface [Class PickList]
com.smartgwt.client.core.JsObject$SGWT_WARN: 16:53:25.385:WARN:PickList:Use addInterfaceProperties() to add methods to interface [Class PickList]
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
at java.lang.reflect.Constructor.newInstance(Constructor.java:526)
at com.google.gwt.dev.shell.MethodAdaptor.invoke(MethodAdaptor.java:105)
at com.google.gwt.dev.shell.MethodDispatch.invoke(MethodDispatch.java:71)
at com.google.gwt.dev.shell.OophmSessionHandler.invoke(OophmSessionHandler.java:172)
at com.google.gwt.dev.shell.BrowserChannelServer.reactToMessagesWhileWaitingForReturn(BrowserChannelServer.java:338)
at com.google.gwt.dev.shell.BrowserChannelServer.invokeJavascript(BrowserChannelServer.java:219)
at com.google.gwt.dev.shell.ModuleSpaceOOPHM.doInvoke(ModuleSpaceOOPHM.java:136)
at com.google.gwt.dev.shell.ModuleSpace.invokeNative(ModuleSpace.java:571)
at com.google.gwt.dev.shell.ModuleSpace.invokeNativeVoid(ModuleSpace.java:299)
at com.google.gwt.dev.shell.JavaScriptHost.invokeNativeVoid(JavaScriptHost.java:107)
at com.smartgwt.client.util.I18nUtil.initMessages(I18nUtil.java)
at com.smartgwt.client.util.I18nUtil.init(I18nUtil.java:32)
at com.smartgwt.client.SmartGwtEntryPoint.onModuleLoad(SmartGwtEntryPoint.java:353)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:606)
at com.google.gwt.dev.shell.ModuleSpace.onLoad(ModuleSpace.java:406)
at com.google.gwt.dev.shell.OophmSessionHandler.loadModule(OophmSessionHandler.java:200)
at com.google.gwt.dev.shell.BrowserChannelServer.processConnection(BrowserChannelServer.java:526)
at com.google.gwt.dev.shell.BrowserChannelServer.run(BrowserChannelServer.java:364)
at java.lang.Thread.run(Thread.java:744)

The last post I saw about this error is in this thread but there didn't appear to be a resolution posted.

http://forums.smartclient.com/showthread.php?t=28410


Test case is about as simple as I can make it:

Code:

import com.google.gwt.core.client.EntryPoint;
import com.smartgwt.client.util.SC;
import com.smartgwt.client.widgets.Window;

public class Test implements EntryPoint {

    /**
    * {@inheritDoc}
    */
    @Override
    public void onModuleLoad() {
       
        SC.showConsole();
       
        Window window = new Window();
       
        window.show();
       
    }
}

Log output on console is:
Code:

17:07:02.126:INFO:Log:initialized
17:07:02.290:WARN:Log:deferred code being placed on class: [Class AdvancedHiliteEditor]
17:07:02.500:INFO:Log:isc.Page is loaded
17:07:11.428:WARN:PickList:Use addInterfaceProperties() to add methods to interface [Class PickList]


Viewing all articles
Browse latest Browse all 4756

Trending Articles