File: README.TXT

package info (click to toggle)
eclipse-platform-ui 4.18-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 71,596 kB
  • sloc: java: 610,550; xml: 20,234; sh: 602; makefile: 7
file content (38 lines) | stat: -rw-r--r-- 1,412 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
This examples plug-in demonstrates the following features:

1. deferred tree/table population
    - serialized children fetch jobs or concurrent
    - batching updates to the collector
    - (optional) different ways of showing progress replacing current pending node (e.g. changing parent's label / image)
    
2. progress view
    - cancellation
    - showing progress, sub tasks
    - showing errors
    - progress groups
    - appearing/disapearing as floating window
    - system jobs aren't shown
    
3. requestInUI
    - post a request
    - post a request then cancel before user has launched it
    - post a request, cancel, and replace with another
    - post a request and allow the user to cancel without running the request
    
4. blocked foreground operation
    - run a background job that locks the workspace
    - run a foreground job that requires workspace (expect blocked dialog with progress view embeded)
    - open an editor and type then save (progress dialog should show blocked)
    
5. workbench part support for progress
    - run a job in the context of a view/editor
    - get busy cursor plus animating something
    - view or editor adding their own custom behavior when job is run
    
6. Creating progress groups
    - that are run serialized
    - that are run concurrently
    - cancel one sub job
    - parent is updated correctly
    
7. running action via busyCursorWhile