Where can I find CLDC class source?

We can find source of J2SE classes inside src.zip of JDK. Similarly where can we find source of CLDC classes? I need source of java.util.Calendar class.

i got it here :http://java.sun.com/javame/downloads/index.jsp

Similar Messages

  • Where can I find some appications' source code  written by swing

    hello, everyone
    I have studied swing for one month, and I have some basic idea of the swing.
    but I want to learn more about the swing. can anybody tell me how can I improve
    myself now or show me where can I find some appications' source code written
    by swing in the internet.
    thank you very much!
    your help is very appreciated!

    Check this tutorial:
    http://java.sun.com/docs/books/tutorial/uiswing/index.html
    It explains all the Swing components with many code samples.
    HTH
    stefan

  • Where can I find SafeZipFileInputStream class in weblogic 10.3

    Hi ,
    I am migrating my application from weblogic8.1 to weblogic 10.3. In my application I used SafeZipFileInputStream.class , this class is placed in weblogic.jar file.
    In weblogic 10.3 SafeZipFileInputStream.class is not in weblogic.jar file.
    Can anyone help me where can i find this class.
    Thanks in advance.
    Sha.

    It is under modules directory, look for modules\com.bea.core.utils.full_1.4.0.0.jar or modules\com.bea.core.utils_1.4.0.0.jar

  • ISA R3 develop where can I find the classes

    Hi everybody,
    I want to modiy Java classes from the ISA R3 shop.
    I have unpacked the *.sar file which contains several ear files like b2b.ear, shopadmin.ear etc. I have unpacked this ear file. After that I have unpacked the corresponding war files. I thought after this steps I can find the Java classes. But there are only jsp and xml files.
    Where can I find the Java classes (Beans etc.)
    Is it correct that I have to unpack ths files with the jar.exe from the jdk and not with the ISA-BUILT tool?
    Kind regard
    Axel

    Hi Axel.
       I suggest you that checks the notes in the forum of   Customer Relationship Management (CRM), in that forum comes all about ISA.
       For modify ISA you have to download de ISA Build Tool, you make your changes and after that you install the new ear application.
       All the bean classes in this applications comes in jar´s but you can extended the classes.. for do it, read the SAP ISA Development Guide
    Good luck!
    Rewards
    Joshua

  • Where can i find the utility source of  "Dynamic LOVs" White Paper ?

    I downloaded this white paper :-
    http://www.oracle.com/technology/products/forms/pdf/10g/community_paper_generic_lov.pdf
    and its title is :
    Oracle Forms 10g – Dynamic LOVs
    The problem here is that I can't find the The utility source :-
    • COLORS.PLL
    • LOV.PLL
    • GEN_LOV.FMB
    • INIT_LOV.FMB
    • TEST_LOV.FMB
    does anyone have any idea where can i find the Source ?!
    please i want specific link , not like that exist in the white paper :-
    {The utility sources can be downloaded from the Oracle Technology Network (OTN1).}

    Francois Degrelle wrote:
    On the same page .........Despite fact that I don't know what page you are talking about - because the pdf file that I was talking about I downloaded it directly from Google - but I'm really grateful very much for you Francois.

  • Where can i find this class? com.sap.aii.adapter.axis.modules.HandlerBean

    Hi,
      Which jar file contains the class com.sap.aii.adapter.axis.modules.HandlerBean? Where can i download from?
    Thank you
    Monika Dietz

    monika,
    Check this out...
    http://www.mail-archive.com/[email protected]/msg37875.html//www.mail-archive.com/[email protected]/msg37875.html
    Regards
    Ravi Raman

  • Where can I find a class to train for Mac Microsoft Powerpoint 2008??, Where can I find a class to train for Mac Microsoft Powerpoint 2008?

    I'm trying to find a class I may attend for Microsoft Powerpoint 2008 for Mac. Charlotte, NC

    As PowerPoint is not an Apple product,  you may get faster results by postin in this forum:
    Office for Mac forums

  • Where can I find a reliable source for downloading iTunes 7.6.2?

    I have purchased a new computer and wish to transfer my iTunes library from the old to the new computer. Unfortunately iTunes 7.6.2 is installed on my own computer (and is no longer hooked up to the internet)and Version 8 iTunes is loaded on my new computer. Version 8 cannot read version 7 files. I have been trying to locate a reliable source fo version 7.6.2 to download onto my new compter, transfer my files and then update to version 8. What should I do? Does anyone know where I can find a reliable and safe download of 7.6.2?

    Could you explain a little more about exactly what you are trying to do and what happens when you do it.
    I can't see why you should not be able to transfer files to your new PC if you do it the right way.
    Here is an article on using an iPod to do the transfer:
    http://support.apple.com/kb/HT1329?viewlocale=en_US
    Bu the method is essentially the same if you use an external drive to do the transfer, or copy the files across a network.

  • Where can I find development class for created by me table

    Hi Gurus
    I've created a table ZTEST and I have added it to development class ZGENERAL. My question is how can I in report knowing the name of table find to what development class it was assigned?
    Thank you for all helpful answers.
    BR
    Marcin Cholewczuk

    Hi
    Table TADIR
    Passs
    PGMID  =  R3TR
    OBJECT =   TABL  
    OBJ_NAME = MARA
    and you can find the Package in DEVCLASS fields
    Cheerz
    Ram

  • Where can I find a class/library to make my image?

    Hi, all:
    I've never worked with Images before, and I'm a little lost on where to start. I need to make a graphical display involving a parameter value for the image I'll be displaying. Imagine a range from 0-9, where given a value of 0, a thin circle is drawn, at 4 a fat tire, and at 9, a solid disk. That circle will be overlaying a square (I'm fine on the square, as its color is an easily settable HSB combo). That circle will also be in greyscale based on another range from 0-9. So, given something like
         public Image makingADisk () {
              int diskShape = a value from 0-9 I'm getting from an arrayList elsewhere
              int diskGreyScale = a value from 0-9 I'm getting from an arrayList elsewhere
              get the image that corresponds to the scaled value of diskShape
              get the color that corresponds to the scaled value of diskGreyScale
              return aDiskHavingTheseTwoProperties;
         }Where do I start? Is there a library out there that will draw circles/disks like this? I'm fine on getting the greyscale color, but how do I make the image that color? If you have suggestions for a different class instead of Image to use, I'd like to know that too.

    Get a graphics context for the image and simply call the setColor(..) and drawOval(..) methods.
    Example (for diskShape0):
    BufferedImage image = new BufferedImage(628,480, BufferedImage.TYPE_INT_RGB);
    Graphics2D g = (Graphics2D) image.getGraphics(); // cast is safe, see javadoc of Image 
    // color
    int colorFactor = diskGreyScale * 200;
    g.setColor(new Color(colorFactor,colorFactor,colorFactor));
    // stroke
    BasicStroke stroke = new BasicStroke(1);
    g.setStroke(stroke);
    // draw
    g.drawOval(x, y, width, height);    Edited by: M.Stamm on Jul 18, 2008 12:46 AM -> Spelling error

  • Where can i find my class files??

    i'm looking into a jsp file, and it imports a class named MailSequia.MailerBean. I get errors about certain class, i would like to know where it 's sopoused to be this class, is it in classpath?? or where it should be??

    If it's in a jsp file on a server the class files are located in the
    WEB-INF/classes/yourPackage/yourClass directory.

  • Where Can I Find the classes.zip File?

    I am looking for the JDBC driver for the Oracle database. I have been to the http://www.oracle.com to look for the classes12.zip and could not find it. Has the name of the zip file changed for Oracle JDBC 10.1.0?

    There are two parts: the java version and the database version.
    This would normally be: classes11.zip, classes12.zip and ojdbc14.jar.
    You should probably be using the last. The first two would be for earlier versions of the database and java.
    If you install the Oracle client it should have it (look for a jdbc dir.)
    There is some place to download it from the otn site as well.

  • Can't find Java Class of a standard UI Command

    Hello everybody,
    Where can i find Java classe source and Bundle file of a standard UI Command "AppDetails"
    for example ?
    Thanks & Regards,
    Hassan Mounim

    Hi Hassan,
    You can find the UIDetailsCommand class here:
    ..\WEB_INF\portal\portalapps\com.sap.km.cm.ui.flex\private\lib\km.appl.ui.flex.uicommand_core.jar
    And the bundle file UIConst here:
    ..\WEB_INF\portal\portalapps\com.sap.km.cm.ui.flex\lib\km.shared.ui.flex.uicommand_api.jar
    Hope this helps,
    Robert

  • Where can i find ios 3 firmware files for ipod touch 2nd genertion

    I have looked everywhere, but i cant find any firmware downloads for ios 3.1.3 for ipod touch 2nd generation. Everywhere i have looked they have only had ios 2 and 4 but no ios 3! And the rare chance i do find a link it does not work. Where can i find a real source to download the firmware IOS 3.1.3 on ipod touch 2nd generation, not 3rd generation not 1st generation. Please help

    Nowhere. If you manage to find one, iTunes won’t allow it to be installed, and if you somehow bypass that, the device won’t activate.
    (116936)

  • How can I find these classes---please!!

    where can I find these classes
    com.sun.media.protocol.dsound.*
    com.sun.media.protocol.sunvideo.*
    they are needed in a JMF program.

    Generally speaking, sun classes are for internal use only. That's not to say you can't call things in those classes, but documentation is hard to come by if at all.

Maybe you are looking for