GWT only emulates a subset of Java classes in client-side code, and nothing from AWT or Swing.
http://www.gwtproject.org/doc/latest/RefJreEmulation.html On Tuesday, July 30, 2019 at 4:56:12 PM UTC-7, medasani kesavi wrote: > > > Can someone suggest if below is also for same situation > Point2D is basic class from Java 8 however seems to be cannot be utilized > in GWT. Anyone using MAPs functionality experiencing the same issue > Line 23: Point2D cannot be resolved to a type > [INFO] Line 30: Point2D cannot be resolved to a type > [INFO] Line 30: The method normalised() from the type Line2D > refers to the missing type Double > [INFO] Line 29: Point2D cannot be resolved to a type > [INFO] Line 3: The import java.awt cannot be resolved > [INFO] Line 25: Point2D cannot be resolved to a type > [INFO] Line 29: The method normalised() from the type Line2D > refers to the missing type Double > On Sunday, 21 July 2019 23:46:19 UTC+10, Frank Hossfeld wrote: >> >> The compile tells you, that there is no source code for: >> org.apache.commons.beanutils.PropertyUtils >> >> Common problem is: >> >> * you did not inherit the module descriptor for the module containing >> PropertyUtils >> >> Just add the module using inherits in your module descriptor. >> >> But I am pretty sure, PropertyUtils can not be used on the client side >> ... but maybe I am wrong. >> >> -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/google-web-toolkit/5e5bf612-8f73-4506-b2d8-0836ea5ee5ba%40googlegroups.com.
