org.eclipse.rap.rwt.lifecycle.UICallBack.activate(String)
|
org.eclipse.rap.rwt.service.ISessionStore.addSessionStoreListener(UISessionListener) |
org.eclipse.rap.rwt.service.UISession.addSessionStoreListener(UISessionListener)
Use addUISessionListener instead
|
org.eclipse.rap.rwt.service.ISettingStore.addSettingStoreListener(SettingStoreListener)
|
org.eclipse.rap.rwt.lifecycle.AbstractWidgetLCA.adjustCoordinates(Widget, Rectangle)
Adjustment of the widget bounds is now handled on the client.
|
org.eclipse.rap.rwt.widgets.ExternalBrowser.close(String) |
org.eclipse.rap.rwt.lifecycle.UICallBack.deactivate(String)
|
org.eclipse.rap.rwt.RWT.getApplicationStore()
|
org.eclipse.rap.rwt.service.IApplicationStore.getAttribute(String)
|
org.eclipse.rap.rwt.service.ISessionStore.getAttribute(String) |
org.eclipse.rap.rwt.service.ISettingStore.getAttribute(String)
|
org.eclipse.rap.rwt.service.ISessionStore.getAttributeNames() |
org.eclipse.rap.rwt.service.ISettingStore.getAttributeNames()
|
org.eclipse.rap.rwt.graphics.Graphics.getAvgCharWidth(Font)
Application code should not need to use this method. If you need an average
character width, you can use GC.stringExtent(String) with a string of your
choice and calculate the average width.
|
org.eclipse.rap.rwt.RWT.getBrowserHistory()
|
org.eclipse.rap.rwt.graphics.Graphics.getCharHeight(Font)
Application code should not need to use this method. If you need this information,
you can use GC.stringExtent(String) with a string of your choice and get
the height of the result.
|
org.eclipse.rap.rwt.graphics.Graphics.getColor(int, int, int)
Factory created resources are obsolete and will be removed in a future release. Use
the constructor Color(Device, int, int, int) instead.
|
org.eclipse.rap.rwt.graphics.Graphics.getColor(RGB)
Factory created resources are obsolete and will be removed in a future release. Use
the constructor Color(Device, RGB) instead.
|
org.eclipse.rap.rwt.graphics.Graphics.getFont(FontData)
Factory created resources are obsolete and will be removed in a future release. Use
the constructor Font(Device, FontData) instead.
|
org.eclipse.rap.rwt.graphics.Graphics.getFont(String, int, int)
Factory created resources are obsolete and will be removed in a future release. Use
the constructor Font(Device, String, int, int) instead.
|
org.eclipse.rap.rwt.service.ISessionStore.getHttpSession() |
org.eclipse.rap.rwt.lifecycle.IWidgetAdapter.getId()
|
org.eclipse.rap.rwt.service.ISessionStore.getId() |
org.eclipse.rap.rwt.service.ISettingStore.getId()
|
org.eclipse.rap.rwt.graphics.Graphics.getImage(String)
Factory created resources are obsolete and will be removed in a future release. Use
the constructor Image(Device, InputStream)} instead.
|
org.eclipse.rap.rwt.graphics.Graphics.getImage(String, ClassLoader)
Factory created resources are obsolete and will be removed in a future release. Use
the constructor Image(Device, InputStream)} instead.
|
org.eclipse.rap.rwt.graphics.Graphics.getImage(String, InputStream)
Factory created resources are obsolete and will be removed in a future release. Use
the constructor Image(Device, InputStream)} instead.
|
org.eclipse.rap.rwt.RWT.getLifeCycle()
As of 2.0, PhaseListeners should only be registered in an
ApplicationConfiguration . For new applications and custom widgets, consider
the RemoteObject API which is going to replace PhaseListener.
|
org.eclipse.rap.rwt.service.IResourceManager.getLocation(String)
|
org.eclipse.rap.rwt.lifecycle.IWidgetAdapter.getParent()
|
org.eclipse.rap.rwt.lifecycle.IWidgetAdapter.getPreserved(String)
|
org.eclipse.rap.rwt.service.IResourceManager.getRegisteredContent(String)
|
org.eclipse.rap.rwt.service.IServiceManager.getServiceHandlerUrl(String)
|
org.eclipse.rap.rwt.RWT.getServiceStore()
The interface IServiceStore is deprecated and will be removed in a future
release without a replacement. If you need to store data in the scope of a request,
consider to use the request object (e.g.
HttpServletRequest#setAttribute(String, Object) ).
|
org.eclipse.rap.rwt.application.ApplicationRunner.getServletPaths()
This method is not part of the RAP API. It will be removed in
future versions.
|
org.eclipse.rap.rwt.RWT.getSessionStore()
|
org.eclipse.rap.rwt.service.ISessionStore.isBound() |
org.eclipse.rap.rwt.lifecycle.IWidgetAdapter.isInitialized()
|
org.eclipse.rap.rwt.service.IResourceManager.isRegistered(String)
|
org.eclipse.rap.rwt.service.ISettingStore.loadById(String)
|
org.eclipse.rap.rwt.lifecycle.IWidgetAdapter.markDisposed(Widget)
|
org.eclipse.rap.rwt.widgets.ExternalBrowser.open(String, String, int)
|
org.eclipse.rap.rwt.lifecycle.IWidgetAdapter.preserve(String, Object)
|
org.eclipse.rap.rwt.service.IResourceManager.register(String, InputStream)
|
org.eclipse.rap.rwt.service.IServiceManager.registerServiceHandler(String, ServiceHandler)
|
org.eclipse.rap.rwt.service.IApplicationStore.removeAttribute(String)
|
org.eclipse.rap.rwt.service.ISessionStore.removeAttribute(String) |
org.eclipse.rap.rwt.service.ISettingStore.removeAttribute(String)
|
org.eclipse.rap.rwt.service.ISessionStore.removeSessionStoreListener(UISessionListener) |
org.eclipse.rap.rwt.service.UISession.removeSessionStoreListener(UISessionListener)
Use removeUISessionListener instead
|
org.eclipse.rap.rwt.service.ISettingStore.removeSettingStoreListener(SettingStoreListener)
|
org.eclipse.rap.rwt.lifecycle.UICallBack.runNonUIThreadWithFakeContext(Display, Runnable)
|
org.eclipse.rap.rwt.service.IApplicationStore.setAttribute(String, Object)
|
org.eclipse.rap.rwt.service.ISessionStore.setAttribute(String, Object) |
org.eclipse.rap.rwt.service.ISettingStore.setAttribute(String, String)
|
org.eclipse.rap.rwt.graphics.Graphics.stringExtent(Font, String)
You can use SWT API to measure a string. Create a GC, set the font, and measure the
string using GC.stringExtent(String) . Don't forget to dispose the GC
afterwards.
|
org.eclipse.rap.rwt.graphics.Graphics.textExtent(Font, String, int)
In most cases, you can use SWT API to measure texts. Create a GC, set the font, and
measure the text using GC.textExtent(String) . Don't forget to dispose the
GC afterwards.
|
org.eclipse.rap.rwt.service.IResourceManager.unregister(String)
|
org.eclipse.rap.rwt.service.IServiceManager.unregisterServiceHandler(String)
|