Where is the "100% Pure Java Check" ?

Dear friends,
few years ago we had a very popular application called 100% Pure Java Checker.. a tool used to verify the portabiliy of Swing Programs...
is there something similar nowadays ?
where ?

JavaPureCheck has completed the Sun EOL process and is no longer supported.

Similar Messages

  • 100 % Pure Java Certification !!!

    I have a product developed in Java 2. The product is developed entirely in Java and is platform independent. I want to go in for the 100 % Pure Java Certification from Sun Microsystems. Can someone let me know how to go about getting this certification.
    Thanks a lot in advance.
    chet888

    Hi, here is something that I have found very useful..
    http://cramsession.brainbuzz.com/cramsession/sun/java2
    Let me know if you need any more information..Hi Geetanjali,
    Well your site does not mention anything about product certification, it only talks about Sun Certification of Progammers. If you have any idea about product certification, please let me know asap.

  • 100% Pure Java Program

    I have seen that the 100% Pure Java Program has "completed the Sun End of Life process and it is no longer supported by Sun" (see http://java.sun.com/100percent/).
    Can anyone explain to me why is this, and what alternatives do we have now to be Java Certified (if any)?
    Thanks.

    It's disturbing but probably not end of the world.
    I like this:
    "Any use of product on this page is at the sole discretion of the developer and Sun assumes no responsiblity for any resulting problems."
    Do they mean that jdk 1.4 is bugless and they are resposible for any problems if something happens?
    I do not think so.

  • Is Eclipse a 100% pure Java program?

    Is Eclipse a 100% pure Java program?

    Eclipse runs on linux, windows, MAc OS X and I think a few others. It has native widgets via SWT for those platforms using the native OS Look and Feel. It is smoother than Swing in most ways, yet Swing does have some advantages as well. SWT is a nice kit. It would be nice if the Swing Team took the idea of building a cross platform native GUI kit into the AWT/Swing layer so that Swing was even faster. I think Swing and SWT are great, only I wish Swing had provided what SWT does (in some ways) so that Swing would have been used and SWT never written. It's a shame, but then again, perhaps it promotes the Swing Team to make Swing better/faster.
    Look at Swing on Mac OS X, it is very nice, looks like native OS (because Apple wrote their own L&F for Mac OS X Only), but it is faster than Swing on Windows/Linux.

  • 100% pure Java

    Does Sun have to formally authenticate one's code as 100% pure Java or is this purely an informal tag that the developer uses to show people it will run on any platform.
    Ta

    Its not possible to write a 100% pure usfull java project (meaning a project with
    some form of input or output), but the code is not system dependent. what? Java was written to provides cross platform compatitable. ou can write useful application that is 100% pure Java and is not System dependant.
    look at the Java API...it's prett abstract from the operating system. Of course, thee are libraries (3rd party) that aimed at a specific OS (such as Jakarta POI library)

  • Where is the URLEncoder in JAVA today?

    Hello,
    Where is the java URLEncoder in 1.5
    I can see it in java.net. etc... but it is depricated. won't let me use it.
    Also
    Where is the Base64 Encoder Decoder in 1.5 today.
    Or can you please tell me how to look for these things so I don't bother you anymore.
    I am very new to Java
    Thank you,
    sqlagentman

    Hello,
    Where is the java URLEncoder in 1.5
    I can see it in java.net. etc... but it is
    depricated. won't let me use it.If you read the API, you'll see what the replacement method call is...
    Also
    Where is the Base64 Encoder Decoder in 1.5 today.the Base64 classes were part of the unsupported com.sun.* libraries. The Jakarta Commons provide a codec library that you can use to do Base64.

  • Where's the Oracle Forms Java API documentation for 11g?

    Hi,
    Can anyone point me in the direction of the Oracle Forms Java API documentation?
    The only thing I can find is this: http://www.oratransplant.nl/1012jdapiDoc/oracle/forms/jdapi/JdapiModule.html but this seems to be for 10.1.2 and it doesn’t correspond to the version I’m using (11.1.1.3).
    Help appreciated,
    Donal.

    i couldn't find the api either however if you implement the class you will simply get compiler errors explaining what you left out.

  • Where's the $100 million advertisemen

    Its been months since news that ceo Sim declared war on apple with its marketing campaign - but I have yet to notice significant ads like the Ipod's U2 tv spots, which I think is terrific... almost as good as the heineken beer commercial
    Has there been anything else in other parts of the world?

    I havent seen an advertisement from Creative in my region. Miami, FL.
    Where is the advertisement going?
    Is this company really going to be a player in the MP3 market. It seems that Sony with its new MP lineup has done more noise than Creative has ever done. I read that Creative had an MP before Apple?, so much for technological advantage. I doubt Creative will make it, they havent shown the public anything. Like i stated before everyone loves my product, but have never heard of it. I could not find this product anywhere in south florida, no store carries it.
    Very interested in Sony's new MP?

  • Where do the information regarding, checkboc checked in alv stored

    hi all,
           when ever i tick a check box in alv report, then how did it know that we have checked at specific row, which variable holds that in formation

    Check this code..
    REPORT ZTEST_ALV_CHECK MESSAGE-ID ZZ .
    TYPE-POOLS: SLIS.
    DATA: X_FIELDCAT TYPE SLIS_FIELDCAT_ALV,
    IT_FIELDCAT TYPE SLIS_T_FIELDCAT_ALV,
    L_LAYOUT TYPE SLIS_LAYOUT_ALV,
    X_EVENTS TYPE SLIS_ALV_EVENT,
    IT_EVENTS TYPE SLIS_T_EVENT.
    DATA: BEGIN OF ITAB OCCURS 0,
    VBELN LIKE VBAK-VBELN,
    POSNR LIKE VBAP-POSNR,
    CHK(1),
    color(4),
    END OF ITAB.
    SELECT VBELN
    POSNR
    FROM VBAP
    UP TO 20 ROWS
    INTO TABLE ITAB.
    X_FIELDCAT-FIELDNAME = 'CHK'.
    X_FIELDCAT-TABNAME = 'ITAB'.
    X_FIELDCAT-COL_POS = 1.
    X_FIELDCAT-INPUT = 'X'.
    X_FIELDCAT-EDIT = 'X'.
    X_FIELDCAT-CHECKBOX = 'X'.
    APPEND X_FIELDCAT TO IT_FIELDCAT.
    CLEAR X_FIELDCAT.
    X_FIELDCAT-FIELDNAME = 'VBELN'.
    X_FIELDCAT-SELTEXT_L = 'VBELN'.
    X_FIELDCAT-HOTSPOT = 'X'.
    X_FIELDCAT-TABNAME = 'ITAB'.
    X_FIELDCAT-COL_POS = 2.
    APPEND X_FIELDCAT TO IT_FIELDCAT.
    CLEAR X_FIELDCAT.
    X_FIELDCAT-FIELDNAME = 'POSNR'.
    X_FIELDCAT-SELTEXT_L = 'POSNR'.
    X_FIELDCAT-TABNAME = 'ITAB'.
    X_FIELDCAT-COL_POS = 3.
    APPEND X_FIELDCAT TO IT_FIELDCAT.
    CLEAR X_FIELDCAT.
    L_LAYOUT-info_fieldname = 'COLOR'.
    *L_LAYOUT-ZEBRA = 'X'.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
    I_CALLBACK_PROGRAM = SY-REPID
    IS_LAYOUT = L_LAYOUT
    I_CALLBACK_PF_STATUS_SET = 'STATUS'
    I_CALLBACK_USER_COMMAND = 'USER_COMMAND'
    IT_FIELDCAT = IT_FIELDCAT
    TABLES
    T_OUTTAB = ITAB
    EXCEPTIONS
    PROGRAM_ERROR = 1
    OTHERS = 2.
    IF SY-SUBRC 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    *& Form STATUS
    text
    -->P_EXTAB text
    FORM STATUS USING P_EXTAB TYPE SLIS_T_EXTAB.
    Pf status
    SET PF-STATUS 'STATUS'.
    ENDFORM. " STATUS
    *& Form USER_COMMAND
    text
    -->R_UCOMM text
    -->RS_SELFIELD text
    FORM USER_COMMAND USING R_UCOMM LIKE SY-UCOMM
    RS_SELFIELD TYPE SLIS_SELFIELD.
    DATA: GD_REPID LIKE SY-REPID, "Exists
    REF_GRID TYPE REF TO CL_GUI_ALV_GRID.
    IF REF_GRID IS INITIAL.
    CALL FUNCTION 'GET_GLOBALS_FROM_SLVC_FULLSCR'
    IMPORTING
    E_GRID = REF_GRID.
    ENDIF.
    IF NOT REF_GRID IS INITIAL.
    CALL METHOD REF_GRID->CHECK_CHANGED_DATA .
    ENDIF.
    loop at itab where chk = 'X'.
    itab-color = 'C300'.
    modify itab index sy-tabix transporting color.
    endloop.
    RS_SELFIELD-refresh = 'X'.
    break-point.
    ENDFORM. "USER_COMMAND

  • Where is the "Start New Row" check box when adding a div tag?

    Ever since I updated Dreamweaver, when i add a div tag i no longer see the "Start A New Row" check box. The only checkbox i see is "Insert as a Fluid Element". Has this option been removed or has it been moved to a new location?

    Hi MichaelMuirhead,
    We have updated Fluid grid in 12.2 release of DW as well as in CC release.
    Unlike before, Now DW smartly recognizes when a Fluid page is open and Converts Structure category to Fluid layout category.
    I.e. when any element is inserted from Structure category on to a fluid page it will be inserted with required CSS to make it fluid, Unless user advices otherwise.
    The idea is to enhance the support for almost all the structural elements as fluid elements, rather than just supporting Div as a fluid element. Hence, Insert Fluid Grid Layout Div Tag has been removed.
    Steps to Insert a fluid element:
    Select Insert > Layout.
    Select the element that you want to insert. (i.e Div or Header or footer etc) 3. In the dialog that appears, enter a new class name, or enter a value for the ID. The selected element is inserted on the layout.
    4) To insert a normal/non fluid element uncheck 'Insert as fluid element' check box in previous dialog.
    Now to answer second part of your concern " Regarding missing "Start A New Row" check box"
    All the elements inserted on a fluid page, start in a New row by default. If user wants to place the element in previous row then in can be achieved by clicking "Move Up a row" button which comes up on FG element HUD, after inserting that element.
    Please refer Screen shot for clearer understanding.
    For more details on update navigate to: http://helpx.adobe.com/dreamweaver/using/fluid-grid-layout-dreamweaver .html
    Here is the link to new Video on how to design a FG page using new FG in DW 12.2.
    http://blogs.adobe.com/dreamweaver/2013/02/updated-fluid-grids-in-dreamweaver.html
    Please note that "Layout" Category in 12.2 has been renamed to more appropriate sounding "Structure" Category in DW CC.
    Hope it helps.
    Kindly revert for any issues or concerns.
    Thanks,
    Puneet

  • Where is the built in Java runtime and development environment in my MAC???

    I keep reading that my macintosh (dual G5 with OSX 10.4.10) came with a fully configured and ready-to-use Java runtime and development environment, however I cannot find, nor do I know how to open it. Doe anyone know how to open this up? thanks so much!

    Your JRE should already be configured so that when you double-click a self-executing jar or open a page with an Applet it will run.
    Your compiler (javac) should be available through your sheel in your terminal application.
    If none of this helps you (and it may well not) you may want to consider installing an IDE. Eclipse for example has a Mac OS version, I am sure there are others but I do not develop on Mac so I can't tell you about them.
    http://www.eclipse.org/downloads/download.php?file=/technology/epp/downloads/release/20071103/eclipse-java-europa-fall2-macosx-carbon.tar.gz

  • Where is the addon that automatically checks if an SSL is avaliable for a website, and redirects to it?

    I had an addon just like it not too long ago, but I lost it when my computer crashed and had to reinstall the operating system. For example: If you were browsing Google and clicked on a Wikipedia link, it wouldn't use "http://en.wikipedia.org/wiki/Article", it would direct you to "https://secure.wikimedia.org/wikipedia/en/wiki/Article" instead. I've been having trouble trying to find it again, may you please help me?

    You might be thinking of HTTPS-Everywhere by the EFF.
    www.eff.org/https-everywhere
    It doesn't work for every site that supports SSL, but it has a lot of pre-programmed URL conversions, including the Wikipedia one that you mentioned.

  • Where are the XI adapter java packages?

    Hello every Guru,
    i am a beginner in the XI adapter developement. I found in the SAP sample adapter source code a lot of
    import com.sap.aii.af.ra.cci.NWInteraction;
    import com.sap.aii.af.ra.cci.XIDeliveryException;
    import com.sap.aii.af.monitor.api.AdapterMonitor;
    import com.sap.aii.af.monitor.api.AdapterStatus;
    import com.sap.aii.af.monitor.api.AdapterStatusData;
    import com.sap.aii.af.monitor.api.MonitorManager;import com.sap.aii.af.service.auditlog.Audit;
    import com.sap.aii.af.service.auditlog.AuditDirection;
    import com.sap.aii.af.service.auditlog.AuditLogStatus;
    import com.sap.aii.af.service.auditlog.AuditMessageKey;
    import com.sap.aii.af.service.idmap.MessageIDMapper;
    import com.sap.aii.af.service.resource.SAPAdapterResources;
    i searched all around, but can not find these packages. This seemed a little stupid. But i am really confused about this problem. Can someone help?
    Message was edited by: Xiang Zhang

    Hi there,
    a description how to get the libs is available at help.sap.com:
    http://help.sap.com/saphelp_nw04/helpdata/en/fd/16e140a786702ae10000000a155106/frameset.htm
    hope it helps,
    Regards Christiam

  • What is 100% pure java?

    A philosophy?
    A style?
    I dont know...

    It means using only Java - no native code compiled in, for example.

  • Can clock synchronization be implemented by pure java?

    I want to build a simple distributed application, whose main purpose is to synchronize the local system clock in the slave JVM with the clock in the master JVM. Can it be implemented by pure java? Or I have to use JNI to implement it?
    And although the application is mainly used in LAN, the delay of transferring the data of time is small, but is there any algorithm to minimize the difference of system clock between the master and the slave?

    No. You can not synchronize the System Clock (clock) in 100% Pure Java.
    Using The Network Time Protocol (NTP) and Java, you can access the current time from many servers around the world.
    The problem here is that you can't change the clock through Java without an interface to the actaul clock.
    Since the clock is a native component (application, service, or utility) you can't change it while being 100% Pure Java.
    That does not mean that you can't do it at all. It just will not be Pure Java. You can, however, test to see what system you are on and then adjust the method used.
    On a Windows system, the clock is set by the Control Panel applet "Date and Time." This applet can be updated using the Command Driven Interface (CDI), also known as a Command Prompt. To do this you can use the Java object Process. The parameter, a String value, should point to the location of command prompt. Then add a PrintStream object to the Process object. Send the following line (using PrintStream.println()) - "time" and "date"
    To update the time use the following line:
    time [ time ]
    Use the time format: hh:mm:sec
    To update the date use the following line:
    date [ date ]
    Use the date format: mm-dd-yy
    This will work on Windows machines (3.x, 95, 98, Me, NT, XP) MS-DOS (all versions with Date/Time capability).

Maybe you are looking for

  • Why does the query work in SQL Developer, but not in APEX?

    Hi, guys: I have a silly question. I have a complicated query, and I tested it successfully with SQL developer, and result is correct. However, when I put it into APEX to generate a report, it always reports no data found. I also know the condition r

  • Implementing vpn-filter Cisco ASA 8.2(1)

    Hi there, I have configured a vpn-filter which should allow a RDP connection to just one server and block all other traffic. The direction of the traffic is from the local subnet to the remote host. Local subnet     192.168.5.0/24 Remote host     192

  • Ipod source pane

    I just bought 80GB new ipod, after I installed Itunes 7.0 software and try upload my photos. But I couldn't find ipod source pane which supposed to be at R/H lower corner. But It doesn't show on itune after I pluged in Ipod to computer. also, not sho

  • Appcrash clr.dll Server2012 R2 Datacenter - RDS - SQL -

    Hello Have a issue with a ERP application called "vbus.exe" It crashes several times a week, for a long time now. Found this link: https://support.microsoft.com/en-us/kb/2640103 which may solve my problem, but there is no download link or anything. T

  • Dbid in nomount state

    Hello, can I obtain my dbid when my database is in nomount state? The scenario is that I had lost all my controlfiles and can only open the db in nomount state. Then I start rman and connect to the target db. I can restore controlfile from autobackup