Package | Description |
---|---|
org.uberfire.client.mvp | |
org.uberfire.client.workbench | |
org.uberfire.client.workbench.widgets.notfound |
Modifier and Type | Interface and Description |
---|---|
interface |
ContextActivity |
interface |
ContextSensitiveActivity |
interface |
PerspectiveActivity |
interface |
PopupActivity |
interface |
SplashScreenActivity |
interface |
WorkbenchActivity
WorkbenchActivity and its subinterfaces define the interface between UberFire framework behaviour and
application-defined behaviour.
|
interface |
WorkbenchEditorActivity
An Editor is an activity that is associated with a VFS path.
|
interface |
WorkbenchScreenActivity
Provides the application-defined behaviour and application-defined view associated with a particular PlaceRequest.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractActivity
Implementation of behaviour common to all activity types.
|
class |
AbstractPopupActivity
Implementation of behaviour common to all popup activities.
|
class |
AbstractSplashScreenActivity
Implementation of behaviour common to all splash screen activities.
|
class |
AbstractWorkbenchActivity
Implementation of behaviour common to all workbench editors and screens.
|
class |
AbstractWorkbenchContextActivity
Implementation of behaviour common to all context activities.
|
class |
AbstractWorkbenchEditorActivity
Implementation of behaviour common to all workbench editor activities.
|
class |
AbstractWorkbenchPerspectiveActivity
Implementation of behaviour common to all perspective activities.
|
class |
AbstractWorkbenchScreenActivity
Implementation of behaviour common to all workbench screen activities.
|
Modifier and Type | Method and Description |
---|---|
<T extends Activity> |
ActivityManager.getActivities(Class<T> abstractScreenActivityClass)
Deprecated.
this method returns Activity instances that have not had their onStartup() methods invoked, so they
can not be displayed according to the normal Activity lifecycle. It is also up to the caller to free
each of the returned Activity instances by calling
ClientBeanManager.destroyBean(Object) on
them. Consider using the Errai bean manager and UberFire AuthorizationManager directly instead of
using this method. See UF-105 for details. |
<T extends Activity> |
ActivityManagerImpl.getActivities(Class<T> clazz) |
<T extends Activity> |
PluginActivityManagerImpl.getActivities(Class<T> clazz) |
<T extends Activity> |
ActivityManager.getActivity(Class<T> clazz,
org.uberfire.mvp.PlaceRequest placeRequest)
Calls to as
ActivityManager.getActivity(Class, PlaceRequest) with security checks enabled. |
<T extends Activity> |
ActivityManagerImpl.getActivity(Class<T> clazz,
org.uberfire.mvp.PlaceRequest placeRequest) |
<T extends Activity> |
PluginActivityManagerImpl.getActivity(Class<T> clazz,
org.uberfire.mvp.PlaceRequest placeRequest) |
<T extends Activity> |
ActivityManager.getActivity(Class<T> clazz,
org.uberfire.mvp.PlaceRequest placeRequest,
boolean secure)
Works like
ActivityManager.getActivities(PlaceRequest, boolean) but performs an unsafe cast to treat the return value as an
instance of the given class. |
<T extends Activity> |
ActivityManagerImpl.getActivity(Class<T> clazz,
org.uberfire.mvp.PlaceRequest placeRequest,
boolean secure) |
<T extends Activity> |
PluginActivityManagerImpl.getActivity(Class<T> clazz,
org.uberfire.mvp.PlaceRequest placeRequest,
boolean secure) |
Modifier and Type | Method and Description |
---|---|
Activity |
PlaceManager.getActivity(org.uberfire.mvp.PlaceRequest place)
Finds the currently open activity that handles the given PlaceRequest by ID.
|
Activity |
PlaceManagerImpl.getActivity(org.uberfire.mvp.PlaceRequest place) |
Activity |
ActivityManager.getActivity(org.uberfire.mvp.PlaceRequest placeRequest)
Calls to as
ActivityManager.getActivity(PlaceRequest) with security checks enabled. |
Activity |
ActivityManagerImpl.getActivity(org.uberfire.mvp.PlaceRequest placeRequest) |
Activity |
PluginPlaceManagerImpl.getActivity(org.uberfire.mvp.PlaceRequest place) |
Activity |
PluginActivityManagerImpl.getActivity(org.uberfire.mvp.PlaceRequest placeRequest) |
Activity |
ActivityManager.getActivity(org.uberfire.mvp.PlaceRequest placeRequest,
boolean secure)
Finds an activity that can handle the given PlaceRequest, creating and starting a new one if necessary.
|
Activity |
ActivityManagerImpl.getActivity(org.uberfire.mvp.PlaceRequest placeRequest,
boolean secure) |
Activity |
PluginActivityManagerImpl.getActivity(org.uberfire.mvp.PlaceRequest placeRequest,
boolean secure) |
Activity |
ActivityLifecycleError.getFailedActivity()
Returns the Activity instance that threw the exception.
|
Modifier and Type | Method and Description |
---|---|
Set<Activity> |
ActivityManager.getActivities(org.uberfire.mvp.PlaceRequest placeRequest)
Calls to
ActivityManager.getActivities(PlaceRequest) with security checks enabled. |
Set<Activity> |
ActivityManagerImpl.getActivities(org.uberfire.mvp.PlaceRequest placeRequest) |
Set<Activity> |
PluginActivityManagerImpl.getActivities(org.uberfire.mvp.PlaceRequest placeRequest) |
Set<Activity> |
ActivityManager.getActivities(org.uberfire.mvp.PlaceRequest placeRequest,
boolean secure)
Returns the set of activities that can handle the given PlaceRequest.
|
Set<Activity> |
ActivityManagerImpl.getActivities(org.uberfire.mvp.PlaceRequest placeRequest,
boolean secure) |
Set<Activity> |
PluginActivityManagerImpl.getActivities(org.uberfire.mvp.PlaceRequest placeRequest,
boolean secure) |
org.jboss.errai.ioc.client.container.SyncBeanDef<Activity> |
ActivityBeansCache.getActivity(org.uberfire.backend.vfs.Path path)
Returns the activated activity with the highest priority that can handle the given file.
|
org.jboss.errai.ioc.client.container.SyncBeanDef<Activity> |
ActivityBeansCache.getActivity(String id)
Returns the activity with the given CDI bean name from this cache, or null if there is no such activity or the
activity with the given name is not an activated bean.
|
org.jboss.errai.ioc.client.container.SyncBeanDef<Activity> |
ActivityAndMetaInfo.getActivityBean() |
List<org.jboss.errai.ioc.client.container.SyncBeanDef<Activity>> |
ActivityBeansCache.getPerspectiveActivities() |
Modifier and Type | Method and Description |
---|---|
void |
ActivityManager.destroyActivity(Activity activity)
Destroys the given Activity bean instance, making it eligible for garbage collection.
|
void |
ActivityManagerImpl.destroyActivity(Activity activity) |
void |
PluginActivityManagerImpl.destroyActivity(Activity activity) |
void |
ActivityLifecycleErrorHandler.handle(Activity failedActivity,
ActivityLifecycleError.LifecyclePhase failedCall,
Throwable exception)
Handles the failure of an activity's lifecycle method.
|
boolean |
ActivityManager.isStarted(Activity activity)
Returns true if the given Activity instance is currently in the started or open state and managed
by this ActivityManager.
|
boolean |
ActivityManagerImpl.isStarted(Activity activity) |
boolean |
PluginActivityManagerImpl.isStarted(Activity activity) |
void |
PlaceHistoryHandler.registerClose(Activity activity,
org.uberfire.mvp.PlaceRequest place) |
void |
PlaceHistoryHandler.registerOpen(Activity activity,
org.uberfire.mvp.PlaceRequest place)
register opened screen of perspective
|
Modifier and Type | Method and Description |
---|---|
void |
ActivityBeansCache.addNewEditorActivity(org.jboss.errai.ioc.client.container.SyncBeanDef<Activity> activityBean,
String priority,
String resourceTypeName)
Used for runtime plugins.
|
void |
ActivityBeansCache.addNewPerspectiveActivity(org.jboss.errai.ioc.client.container.SyncBeanDef<Activity> activityBean)
Used for runtime plugins.
|
void |
ActivityBeansCache.addNewScreenActivity(org.jboss.errai.ioc.client.container.SyncBeanDef<Activity> activityBean)
Used for runtime plugins.
|
void |
ActivityBeansCache.addNewSplashScreenActivity(org.jboss.errai.ioc.client.container.SyncBeanDef<Activity> activityBean) |
Modifier and Type | Class and Description |
---|---|
class |
StandaloneEditorPerspective |
Modifier and Type | Class and Description |
---|---|
class |
ActivityNotFoundPresenter |
Copyright © 2012–2019 JBoss by Red Hat. All rights reserved.