Where's the API docs for J2ME?

I'm a long time J2SE programmer wanting to get into J2ME> One of the first things I tried to do is find Sun's javadoc for J2ME, but I can't find it anywhere. How can I find them? Also, are there any good learning trails for learning the basics of the J2ME windowing system and such?

http://java.sun.com/j2me/docs/index.html
or you can search in
http://jcp.org/en/home/index
by JSR
http://java.sun.com/j2me/index.jsp

Similar Messages

  • Where is the API download for ADF Faces 10.1.3.2?

    I can still download adf-faces-10_1_3_0_4 which contains the API documents in a /doc directory.
    Where is the API download for ADF Faces 10.1.3.2?
    Thanks,
    --Todd                                                                                                                                                                                                                                                                                                                                                   

    .. will check if we can make it available
    Frank

  • Where are the API Docs of the appserv-rt.jar classes and others?

    Where do I find the API Documentation/Specification for the classes of :
    com.iplanet ...
    com.sun.appserv ...
    com.sun.enterprise.security ...
    The very of appserv-rt.jar and appserv-rt-ee.jar
    I need it for AS7 (J2EE 1.3) and AS8 (J2EE 1.4).
    Something like http://java.sun.com/j2ee/sdk_1.3/techdocs/api/index.html would be nice

    For AS8, the docs subdirectory under your installation directory will have javadocs for all classes in com.sun.appserv and javax... namespace.
    For AS7, what is it that you are specifically looking for?
    In general, com.sun.enterprise... classes are not documented. There are exceptions and you should be able to find them in developer's guide.
    Finally, you might want to look at the source code in the Open Source Application Server project GlassFish (http://glassfish.dev.java.net).

  • So many links...where is the AS3 docs for Molehill?

    I see how to build for FP11, but haven't yet tracked down the language info for either of the two new features.

    @Colin Holgate, you say demo's online, but the onli demo I found was the zombies demo. Are there other demos online too which use FP11 specific features ?
    regards,
    Bart

  • Now that bridge support has been pulled, where are the updated docs for valid MXI tokens?

    Since CS6 Bridge support has been inexplicably pulled from Extension Manager. So I need to find a way to install Bridge scripts. I'm after current documentation on the MXI format. Can someone point me to it? Thanks!
    ...Mike

    You can find all the tokens and their corresponding directory on Windows and Mac from http://help.adobe.com/en_US/extensionmanager/cs/using/MXI_tech_note.pdf. Also the FAQ link in the Extension Manager user forum page (http://forums.adobe.com/community/creativesuites/extensionmanager/faq) describes how to install extensions for Bridge CS6 manually.
    Another way is to copy configuration sub-directory from Bridge CS5/5.5 to Bridge CS6, and modify all the version-related values in XManConfig.xml accordingly. Then launch Extension Manager CS6. Bridge CS6 will be listed in Extension Manager CS6. You can install extensions for Bridge as usual. But we don't give you any guarantee for it.

  • Downloadable API Docs for OS X

    Hi,
    Are the API docs for JavaFX available for download somewhere? I downloaded the usual JDK 7 update 4 doc bundle, but it doesn't seem to include anything for JavaFX (I expected that it would, since the JDK 7 update 5 installer includes support for JavaFX development). I realize that http://docs.oracle.com/javafx/2/api/index.html has the docs online, but I would like to have them for offline usage as well.
    Thanks,
    Gary Schiltz
    Mindo, Ecuador

    The osx zip in the dev preview has docs: http://www.oracle.com/technetwork/java/javafx/downloads/devpreview-1429449.html
    I think when 2.2 is released the doc will also be posted to the main jdk download page.
    See http://javafx-jira.kenai.com/browse/RT-23532 "JavaFX doc bundle needs to be hosted / staged on OTN"

  • Where can i download the api doc ?

    I'm writting Extension tool for jdeveloper
    In the development, i need to use many class from oracle.ide.* packages.
    But i cant find the api doc in oracle.com
    Dose anyone know where i can see them ?

    The extension API javadoc is included in the Online help in JDeveloper, or you can extract it from ${jdev.home}/jdev/doc/ohj/jdev-doc.jar.
    Thanks,
    Brian ([email protected])
    JDev Team

  • 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.
    ...

  • Where will we find the attached docs for SC or PO?

    Hi All,
    We have a requirement in which we need to send the approval offline email with the attached docs for PO or SC .
    i checked the FM BBP_PD_SC_GETDETAIL in the table ET_ATTACH . but in these i am getting the attached doc in some other format (D0CF11E0A1B11AE1000000000000000000000000000000003E000300FEFF0900060000000000000000000000010000000200000000000000001000000400000001000000FEFFF
    FFFF52006F006F007400200045006E00740072007900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016000500F
    00000000FEFFFFFFFFFFFFFFFEFFFFFFFDFFFFFFFEFFFFFF00000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0F0000001000000011000
    FFFFFFFFFFFFFEFF000003330200000000000000000000000000000000000200000002D5CDD59C2E1B10939708002B2CF9AE4400000005D5CDD59C2E1B10939708002B2CF9AE2
    000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    0427000800220000222422232C2323302E30305F293B5B5265645D5C28222422232C2323302E30305C291E0437002A003200005F282224222A20232C2323305F293B5F2822242
    CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC
    0000250204000000FF0081000200C1041400000015000000830002000000840002000000A10022000000FF000100010001004400CCCCCCCC000000000000E03F000000000000E
    000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000)
    Can any one tell me from where i can get the attached file content for SC and PO?
    Regards
    Channappa Sajjanar

    I put some info in the SC forum.

  • 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/

  • Java API docs for MapViewer

    I'm looking for the Java API docs for the oracle.lbs.mapclient.MapViewer bean.
    The mapviewer .pdf file has an API section, but only inludes descriptions of some of the arguments passed to the various methods. I'm using the 9.04 release - where should I look for these docs and/or source code?
    Thanks,
    Eric Everman
    USGS

    OK - I found them. They are part of the 9.04 kit as part of the web application.
    ***NOTE: It would be if oracle had all of its javadoc in one location, rather then rely on installations to provide docs.***
    If others are looking for them, they are available as part of the installed web application at:
    host:port:context/mapclient
    Or, if you want file access to them, unzip the mapviewer.ear file that comes with the kit. From that unzip the web.war file. The viewerbean API docs are then located in the mapclient subdirectory.

  • Where is the api documentation?

    Um, I signed up for my key and cannot find the api docs anywhere.
    Would someone please provide a link to the api documentation?
    Thank you.

    Wait... is this it? https://learn.adobe.com/wiki/display/kulerdev/B.+Feeds
    Oh lord...

  • API Doc for oracle.forms.ui and oracle.ewt available (Forms 9.0 PJC)?

    Hi there,
    where can I get the Java Docs for the oracle.forms.ui and oracle.ewt Packages for implementing Forms 9.0 PJC?
    Where can I get more docu about building PJCs? Found already some samples and
    Thanks, Markus

    At this time, the JavaDoc for these classes is not available.
    As a general rule you will find that the Methods and properties of the underlying oracle.ewt.* classes closely mirror the equivilent java.awt.* classes, so you should be able to gain a bit more information that way.
    And yes setDropDownVisible does pop the combo list down, but it's a protected method which might be why you're having problems with it?
    - Assuming you are having a problem with it...

  • Any Java API doc for PJC

    Hi,
    I 've seen someone has asked about API doc for PJC (Pluggable java components) and there is no response on this matter.
    Can someone from Oracle give us some hints on this?
    Is this PJC still support in future version, it seems this will be phase out soon as the resource available for this components are so limited and it is discouraging people to use.
    But how are people able to progressively migrate traditional form to J2ee without some transitional products to support such migration?
    Regards,
    ana

    Hi,
    PJCs will stay, same for Java Importer. You are right that we didn't publish any Javadocs until yet. I'll takle this one up to again suggest to the developers. Only the minority of classes though are Forms classes, the rest are UI classes with consume from an internal group.Just to be clear, PJCs, JavaBeans and Java in Forms will not phase out.
    Note also that PJCs don't help you to migrate Forms to J2EE, they help you to use Java in Forms.
    Frank

  • Where are the epson drivers for Mavericks for the artisan 835

    Where are the epson drivers for Mavericks for the artisan 835

    OMT8 wrote:
    Well, I have this printer too, and I get the following response from the System Prefs Printers and Scanners when I select to add this printer:
    "The software for this printer is currently unavailable. Please contact the printer’s manufacturer for the latest software."
    When you go to the Epson website for this particular printer it says:
    "The latest drivers for this product are available only via Apple's Software Update."
    And finally, when you go to Software Update it says: "No updates available"
    I second OMT8.
    Yes, the driver file at http://support.apple.com/kb/DL1398 allowed me to finally install my printer, but does Apple have _any idea_ how long it takes to download a 1.08GB file over a 1.5mbps DSL connection?
    Never mind how much of my pricey new SSD is being consumed by the resulting 1.80GB of driver files all for _one_ printer driver that should maybe occupy 200K?
    Or that the primary article on OS X printer drivers (http://support.apple.com/kb/HT3669) -- which does indicate that the Artisan 830 is supported -- does not mention or link to the driver file that's needed to make it work?
    Or what a complete violation of Apple's "it just works" gestalt it is to be confronted with the above Catch-22 and to have to search the web and then go through all of the above to make a new laptop talk to a two-year-old printer?
    Yes, my printer now works, and yes, Apple's Support Communities were instrumental in getting to this point. But spending all morning (plus download time) getting a printer driver installed tastes way too much like I paid for Apple and got Microsquish.
    -carl-

Maybe you are looking for

  • Wrong payslip in case of seperation

    Dear all , While running payroll for seperated employees the system is displaying wron information in payslip , like the amounts , tax etc. is coming right but the no. of paid days is wrong. What could be the possible error. Regards, neha

  • How to Connect Canon ZR80 to my iMac

    Can someone tell me how I would go about connecting my Canon ZR80 digital video camera to my iMac? Is it possible? The digital video camera has a DV terminal. I would really appreciate any help on this as I have lots of video tape to review and hope

  • Mac's using a Windows Print Server

    I am an administrator for a dual-platform school district (elementary and middle schools). We run both AD & OD, and all of our Mac's are bound to both AD & OD. Our users authenticate to Active Directory. My issue is printing from our Mac's (MacBooks

  • I can't sign in to my messages or FaceTime with mi apple ID.

    I can't sign in to my messages or FaceTime with mi apple ID. I keep getting this message: (Your Apple ID can't be used to set up FaceTime at this time. and it gives me this: Customer Code: 3400-5829-7815.) how do i fix? <Email Edited by Host>

  • TS3276 Can't send email. Send button doesn't work.

    I'm using mail 4.6. The send button doesn't work. I click on it and nothing happens.