Deprecated Methods |
org.eclipse.rap.rwt.lifecycle.UICallBack.activate(String)
Use ServerPushSession.start() instead. |
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)
Use SettingStore instead of ISettingStore . |
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)
Use ServerPushSession.stop() instead. |
org.eclipse.rap.rwt.RWT.getApplicationStore()
Use RWT.getApplicationContext() instead. |
org.eclipse.rap.rwt.service.IApplicationStore.getAttribute(String)
Use ApplicationContext instead of IApplicationStore . |
org.eclipse.rap.rwt.service.ISessionStore.getAttribute(String)
|
org.eclipse.rap.rwt.service.ISettingStore.getAttribute(String)
Use SettingStore instead of ISettingStore . |
org.eclipse.rap.rwt.service.ISessionStore.getAttributeNames()
|
org.eclipse.rap.rwt.service.ISettingStore.getAttributeNames()
Use SettingStore instead of ISettingStore . |
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()
use BrowserNavigation client service instead, see
Client.getService(Class) |
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()
Use WidgetAdapter instead of IWidgetAdapter . |
org.eclipse.rap.rwt.service.ISessionStore.getId()
|
org.eclipse.rap.rwt.service.ISettingStore.getId()
Use SettingStore instead of ISettingStore . |
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 (provisional) RemoteObject API which is going to replace PhaseListener. |
org.eclipse.rap.rwt.service.IResourceManager.getLocation(String)
Use ResourceManager instead of IResourceManager |
org.eclipse.rap.rwt.lifecycle.IWidgetAdapter.getParent()
Use WidgetAdapter instead of IWidgetAdapter . |
org.eclipse.rap.rwt.lifecycle.IWidgetAdapter.getPreserved(String)
Use WidgetAdapter instead of IWidgetAdapter . |
org.eclipse.rap.rwt.service.IResourceManager.getRegisteredContent(String)
Use ResourceManager instead of IResourceManager |
org.eclipse.rap.rwt.service.IServiceManager.getServiceHandlerUrl(String)
Use ServiceManager instead of IServiceManager |
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()
Use RWT.getUISession() instead |
org.eclipse.rap.rwt.service.ISessionStore.isBound()
|
org.eclipse.rap.rwt.lifecycle.IWidgetAdapter.isInitialized()
Use WidgetAdapter instead of IWidgetAdapter . |
org.eclipse.rap.rwt.service.IResourceManager.isRegistered(String)
Use ResourceManager instead of IResourceManager |
org.eclipse.rap.rwt.service.ISettingStore.loadById(String)
Use SettingStore instead of ISettingStore . |
org.eclipse.rap.rwt.lifecycle.IWidgetAdapter.markDisposed(Widget)
Use WidgetAdapter instead of IWidgetAdapter . |
org.eclipse.rap.rwt.widgets.ExternalBrowser.open(String, String, int)
Use UrlLauncher.openURL(String) instead |
org.eclipse.rap.rwt.lifecycle.IWidgetAdapter.preserve(String, Object)
Use WidgetAdapter instead of IWidgetAdapter . |
org.eclipse.rap.rwt.service.IResourceManager.register(String, InputStream)
Use ResourceManager instead of IResourceManager |
org.eclipse.rap.rwt.service.IServiceManager.registerServiceHandler(String, ServiceHandler)
Use ServiceManager instead of IServiceManager |
org.eclipse.rap.rwt.service.IApplicationStore.removeAttribute(String)
Use ApplicationContext instead of IApplicationStore . |
org.eclipse.rap.rwt.service.ISessionStore.removeAttribute(String)
|
org.eclipse.rap.rwt.service.ISettingStore.removeAttribute(String)
Use SettingStore instead of ISettingStore . |
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)
Use SettingStore instead of ISettingStore . |
org.eclipse.rap.rwt.lifecycle.UICallBack.runNonUIThreadWithFakeContext(Display, Runnable)
Use UISession.exec(Runnable) instead. You can obtain a reference to the UI
session for a display by RWT.getUISession(Display) . Example:
RWT.getUISession( display ).exec( runnable ) . |
org.eclipse.rap.rwt.service.IApplicationStore.setAttribute(String, Object)
Use ApplicationContext instead of IApplicationStore . |
org.eclipse.rap.rwt.service.ISessionStore.setAttribute(String, Object)
|
org.eclipse.rap.rwt.service.ISettingStore.setAttribute(String, String)
Use SettingStore instead of ISettingStore . |
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)
Use ResourceManager instead of IResourceManager |
org.eclipse.rap.rwt.service.IServiceManager.unregisterServiceHandler(String)
Use ServiceManager instead of IServiceManager |