Where can I found the LongTask documentation?

I have found some example for ProgressMonitor using
private LongTask task;
as class definition for the timertask
and this LongTask has methods :
task.getMessgae(); and
task.getCurrent();
But I cannot find any documentation from JDK1.4 help.
Neither java.util.timertask nor java.swing contains any LongTask class definition.
Please advise where can I find these documentation or help?
Thanks a lot.

Yeah, they are part of the tutorials. Right along with the SwingWorker. Have a look at them again.
Also, have a look at Doug Lea's book on concurrent programming in java.
http://java.sun.com/docs/books/cp/
and his site.
http://g.cs.oswego.edu

Similar Messages

  • Where can we found the latest update of the iaswe 1.1 document

    Where can we found the latest update of the iaswe 1.1 documen? The current version of 1.1 contains a lot of documentation mistakes.
    Anyone news?
    Marc

    Can you tell me where did you find the old 1.1 version documentation of the 9iAS-WE (formally c named Portal-To-Go)?

  • Where can i found the download software of   oracle identity manager 9.1.0.

    where can i found the download software of oracle identity manager 9.1.0.1 Remote Manager
    . can any one help me.
    Edited by: user10545341 on Jul 29, 2011 8:19 AM

    And follow the steps to complete your task:
    Agents in Active Directory 9.1.0.2
    hope this helps,
    Thiago L Guimaraes

  • HT1766 where can  i found the back-up data in computer from Iphone?

    Where Can I found the Back-Up data Computer (Iphone to Computer)? ty

    If you mean your iPhone backup, you can't see any files in the backup, you can only restore it to your phone.  You can confirm that you have one by going to Settings>iCloud>Storage & Backup>Manage Storage and seeing that your phone is listed at the top under Backups.

  • HT5824 where can i found the back up info that I have backed up from my iphone?

    where can I found the back up info that I have backed up from my Iphone?

    If you mean your iPhone backup, you can't see any files in the backup, you can only restore it to your phone.  You can confirm that you have one by going to Settings>iCloud>Storage & Backup>Manage Storage and seeing that your phone is listed at the top under Backups.

  • Where can I found the books(Audiobooks)

    there is a category "AUDIOBOOKS"
    Are there original books (with pages) for Audiobooks?
    Where can i find them?

    Are there original books (with pages) for Audiobooks?
    Sorry, but I'm not clear on what you mean. Do you mean a printed book that you'd be shipped, or a file (such as a PDF) with the print version of the book that you could download? If so, then no; all that's available from the iTunes Music Store (at least to the best of my knowledge) is the recorded version.

  • Where can I found the Oracle-Validated rpm packaeg in OEL6?

    Hello,
    I installed the OEL6 to avoid some issues I had; now I can't find the Oracle-Validated package rpm; I registered my system to UBL and nothing show up.
    Thanks

    user11344822 wrote:
    I installed the OEL6 to avoid some issues I had; now I can't find the Oracle-Validated package rpm; I registered my system to UBL and nothing show up. There is no oracle-validated RPM for OL6 yet, as there are no certified Oracle applications for OL6. Until our applications are certified, we cannot build that RPM (because we don't know what the right settings are yet!). Keep in mind that most Oracle applications won't install on OL6 yet and none of them are supported yet either. You're better off staying on OL5U6.

  • Where can I find the API documentation for MIDP?

    on the website of sun.com there is only the API documentation of CLDC. However, the API doc of MIDP is missing. how are we supposed to program without the documentation?
    Thanx

    search jcp.org and you'll get the following:
    MIDP 1.0 http://www.jcp.org/aboutJava/communityprocess/final/jsr037/
    MIDP 2.0 http://www.jcp.org/aboutJava/communityprocess/final/jsr118/

  • Where can I found the Vision and Motion toolkit 64 bit

    Hi, 
    I wrote an image analysis vi on Labview 2012 32bit but it is a bit too slow. I would like to test it on LabView 64bit but I am unable to download the Vision and Motion toolkit. I have the installation CDs for the academic version of LabView 2012, but only the 32bit version of it. Is there anyway to download the 64bit version of this toolkit?
    Thanks a lot for your help!

    Unless this have changed, much motion was not 64 bit ready.  This can be a chalange since you would have to segment your code to 32 and 64bit parts.  Vision works great in 64bit
    Paul Falkenstein
    Coleman Technologies Inc.
    CLA, CPI, AIA-Vision
    Labview 4.0- 2013, RT, Vision, FPGA

  • Where can i found the taz sicker of the apple's film ??

    Hello,
    I searched this sticker (taz (looney tunes) of the apple's film) on the web without success, can you tell me if there is somewhere.
    THX ALL

    And follow the steps to complete your task:
    Agents in Active Directory 9.1.0.2
    hope this helps,
    Thiago L Guimaraes

  • Where can I find the right doc for SunStudio For Linux ?

    I can find the docs for SunStudio here, http://docs.sun.com/app/docs/doc/819-5265/6n7c29ck9?a=view
    but it seems that it doesn't right on linux platform.
    #include <stdio.h>
    int main(void)
    #if defined(sun)
            printf("sun defined \n");
    #else
            printf("sun undefined \n");
    #endif
    #if defined(unix)
            printf("unix defined \n");
    #else
            printf("unix undefined \n");
    #endif
    #if defined(sparc)
            printf("sparc defined \n");
    #else
            printf("sparc undefined \n");
    #endif
    #if defined(i386)
            printf("i386 defined \n");
    #else
            printf("i386 undefined \n");
    #endif
    #if defined(__sun)
            printf("__sun defined \n");
    #else
            printf("__sun undefined \n");
    #endif
    #if defined(__unix)
            printf("__unix defined \n");
    #else
            printf("__unix undefined \n");
    #endif
    #if defined(__SUNPRO_C)
            printf("__SUNPRO_C defined \n");
    #else
            printf("__SUNPRO_C undefined \n");
    #endif
    #if defined(__sparc)
            printf("__sparc defined \n");
    #else
            printf("__sparc undefined \n");
    #endif
    #if defined(__i386)
            printf("__i386 defined \n");
    #else
            printf("__i386 undefined \n");
    #endif
    #if defined(__SVR4)
            printf("__SVR4 defined \n");
    #else
            printf("__SVR4 undefined \n");
    #endif
            return 0;
    }[luoyi@qpd06 test]$ suncc -o test test.c
    [luoyi@qpd06 test]$ ./test
    sun undefined
    unix defined
    sparc undefined
    i386 undefined
    __sun undefined
    __unix defined
    __SUNPRO_C defined
    __sparc undefined
    __i386 undefined
    __SVR4 undefined
    where can I found the correct docs for SunStudio For Linux ?

    You can refer to cc man pages. Here is about predefinitions:
    Predefinitions:unix
    sparc (SPARC)
    i386 (x86)
    sun
    The above are not predefined in -Xc mode.
    These predefinitions are valid in all modes:
    __BUILTIN_VA_ARG_INCR
    __SUNPRO_C=0x590
    __SVR4(SPARC)
    __SunOS(Solaris)
    __SunOS_OSN.N(Solaris)
    __amd64(x86 with-m64)
    __gnu__linux(linux)
    __i386(x86)
    __linux(linux)
    __linux__(linux)
    __sparc(SPARC)
    __sparcv9(with-m64)
    __sun(Solaris)
    __unix
    __�uname -s�_�uname -r�
    __x86_64(x86)
    linux(x86,linux)
    The following is predefined in -Xa and -Xt modes only:
    __RESTRICT
    The compiler also predefines the object-like macro
    __PRAGMA_REDEFINE_EXTNAME,
    to indicate the pragma will be recognized.
    ...

  • Web Service - ABAP. Where can I found documentation ?

    Hi expert,
    Where can I found documentation about web service - (stack ABAP and not JAVA)   ?
    for me is important also basic information...
    Tks ,
    bye.

    Hi,
    Try with the following links for web service (e-learnig).
    https://www.sdn.sap.com/irj/scn/advancedsearchcat=sdn_media&query=Web+Services&adv=false&sortby=cm_rnd_rankvalue
    https://www.sdn.sap.com/irj/scn/advancedsearch?cat=sdn_media&query=webServicesabap&adv=false&sortby=cm_rnd_rankvalue
    Thank you,
    Sekhar.

  • Where can I find the documentation of navBuilder object?

    Hi all,
    I can't found any documentation of the object navBuilder and its method such as: addChildNodeTo, getNodeById, deleteItem, etc, in Oracle UCM documentation.
    So, where can I found them?
    This is very important for customization. For example, I want to know the argument descriptions of method addChildNodeTo, such as:
    navBuilder.addChildNodeTo('NAVTREE', 'collection', 'id==NEW_CHECK_IN', 'label=='+lc('wwNewCheckIn'));
    Thanks & Regards.

    Note that if you use UCM 11g, the nav builder has changed. You no longer need to override/extend includes to add stuff to Javascript
    but it is now possible to use definitions (using dynamic tables to setup the menu's) like the example below:
    <@dynamicdata CoreMenuItems@>
    id, label, linktype, linkdata
    myMenuHeader, wwMyMenuHeader, ,
    myLink, wwMyLink, cgi, IdcService=GET_DOC_PAGE&Action=GetTemplatePage&Page=myTemplate&idcToken=<$idcToken$>     
    <@end@>
    <@dynamicdata CoreMenuItemRelationships@>
    <?commatable mergeKey="primaryKey" derivedColumns="primaryKey:parentId+id"?>
    parentId, id, loadOrder
    MENU_B, myMenuHeader, 60
    myMenuHeader, myLink, 10
    <@end@>Note: These definitions can be placed in the same file as your includes (dynamichtml).
    Regards,
    Fabian

  • Hi someone, I went to muse theme and browse widgets to find the toolbox 024 of google language translator, i saw the video explaining how to manage the widgets but now where can i found it to include it in my website because the french version of muse don

    Hi someone, I went to muse theme and browse widgets to find the toolbox 024 of google language translator, i saw the video explaining how to manage the widgets but now, where can i found it to include it in my website because the french version of muse don't have several free widgets for people like me who pay every month the application.Thanks

    I'm not aware of a free translator widget.
    I found these...
    Website Translator 
    Translator Widget  $6.99 for the widget
    Adobe Muse TB024 Widget | MuseThemes.com  $69/year Includes everything | I signed up for this and it's been well worth it, they have new themes & widgets every month.

  • I change my Pc and don't found my Original DVD from my Acrobat 9 STANDARD. I have the Key and found in Internet the Pro Version, but not the Standard Version. Where can i download the Standard Version?

    I change my Pc and don't found my Original DVD from my Acrobat 9 STANDARD. I have the Key and found in Internet the Pro Version, but not the Standard Version. Where can i download the Standard Version?

    Downloadable installation files available:
    Suites and Programs:  CC 2014 | CC | CS6 | CS5.5 | CS5 | CS4, CS4 Web Standard | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  13 |12 | 11, 10 | 9, 8, 7
    Photoshop Elements:  13 |12 | 11, 10 | 9,8,7
    Lightroom:  5.7.1| 5 | 4 | 3
    Captivate:  8 | 7 | 6 | 5
    Contribute:  CS5 | CS4, CS3
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.window using the Lightroom 3 link to see those 'Important Instructions'.

Maybe you are looking for

  • Content Migration of PI 7.0 to PI 7.1

    Hi Experts, We have to PI installations within our company - PI 7.0 and PI 7.1. The plan is to migrate the contents of PI 7.0 to PI 7.1 and eventually shutdown 7.0. Does anybody have any views on how this is best achieved. At the moment we have 2 mig

  • Web service call - works locally but not on mobile?

    Hi, I have a web service call (the service is hosted on the cloud so it's an external, permamnent domain) which works fine when I'm testing it locally using the Flex Buritto built in emulator or directly using my browser. But when trying from an andr

  • Design mode doesn't show anything after import

    I just installed Flash Builder 4 and selected a small project I was working with in Flex 3.  It gave me a warning upgrading the directory which I did and loaded up the base .mxml file.  I ran it and it worked ok.  I then went into design mode to add

  • Does Apple Mail have a "return receipt" feature similar to Outlook?

    Does Apple Mail have a "return receipt" feature similar to Outlook?

  • Put field synopsis in brief area and full text in detail area

    I have been making some dynamic sites recently and had a question about only pulling the first couple lines of data from a field in the summary page and showing the full text on the detail page. Currently, i make 2 fields, a brief field and a detail