Java basic icons

Hi,
Just wondered how to utilise the icons built-in in java? such as open files or save files.
thankx heaps

hello,
dont know if i understood your question, but hereare the jsdk icons:
http://developer.java.sun.com/developer/techDocs/hi/repository/
regards,
Tim

Similar Messages

  • How do you check what version of the java basic libs

    Dear SDN team,
      I am currently using EP 6.0.2.5 , I have just installed patch 5 and I am wondering if I should patch my JAVA Basic libs.  2 Questions
    1.   How can I tell which version I am using now
    2.   Should I patch these libs and why?
    Thanks
    Jeremy

    Hi,
    In The SDM Tool look for an SDA that was deployed from the SAP Java Libs package and then you will see something like:
    Software Type: JAVA-LIB
    Implementation Version: 6.20.<b>14</b>20031219134547.0000
    This means that you are using SAP Java Libs 14.
    It is recommanded to use the latest Java Libs because fixed and enhancements are provided with these libraries.
    Kind regsrds,
    Aviad

  • Java Console (icon in taskbar)

    I clicked too quickly when looking at the java console options, selected the wrong item and hide the icon forever. Could someone please tell me where I can go to make it visible again?
    (I'm talking about the Java logo/icon that appears in your taskbar when Java applets are running in your browser.)
    felling quite foolish,
    Andrew

    In Internet Explorer, from the menubar, do
    Tools->Internet Options...
    Click on advanced
    scroll down to java options

  • Java basic tools

    To start, sorry for posting this here, but this question did not fit on the java tools category.
    I need some guidance on (preferably free/open source tools) for java in order to :
    1. Test java basic code
    2. Test GUI code (can this be done?)
    3. Software quality tools like profilers, etc
    Any help/ideas will be apreciated guys!
    Thank you in advance

    Alexandros wrote:
    To start, sorry for posting this here, but this question did not fit on the java tools category.
    I need some guidance on (preferably free/open source tools) for java in order to :
    1. Test java basic code
    JUnit & TestNG?
    2. Test GUI code (can this be done?)[Test Driven Development: A Practical Guide|http://www.amazon.co.uk/Test-Driven-Development-Practical-Guide/dp/0131016490/ref=sr_1_3?ie=UTF8&s=books&qid=1211543555&sr=8-3] goes over a list of options for this. Alas I can only remember brute force (using java.awt.Robot) and JFCUnit. Neither of them are the one used by the example. The other option is not to and test the Listeners & Swing Models (with the test frameworks above). After all you are really only testing the framework will fire an even when asked, and thats what the frameworks test suite is for.
    3. Software quality tools
    FindBugs
    [Cr�p4J|http://www.cr%61p4j.org/]
    I personally find this one a little to spammy, but if I forced myself to tone them down a little and follow the rules they could help:
    PDM
    CheckStyle
    like profilers, etcNetBeans has a profile built in. It is very pretty. Lots of fancy graphs and lines.
    Edit: De-* Cr�p4, add statement on testing GUIs that will get me flamed.
    Edited by: mlk on 23-May-2008 12:05

  • Java Feel Icons

    Hi,
    I am building a GUI for my project and would like to add some java feel icons to the GUI.
    I have once download some from java.sun.com, but forget the URL. Could anyone point me to the URL or some resources?
    Thanks

    http://developer.java.sun.com/developer/techDocs/hi/repository/

  • How can I change the Jframe Java help Icon

    How can I change then Jframe Java help Icon?.
    I am using then HelpSet class and HelpBroker.
    I want to change the java help icon
    Any Idea? thanks. ...

    It can be done, but it's ugly...
    Add in a listener to your topmost JFrame to sense when the focus is lost, since this happens when a help window comes up. When the focus leaves the main window, check all the windows that are up to see if one is a help window. If so, this will give you a reference to the help window and you can drill down to change what you want.
    Here's an example that changes the icon and removes the borders from the javahelp buttons.
    WindowListener wndCloser = new WindowAdapter() {
              //A necessarily roundabout method to affect
              //look and feel aspects of the javahelp viewer.
              //(there is no way to get at these components directly.)
              //When the main frame loses focus, it may be because
              //the help viewer was brought up. Look through all
              //the current frames to see if one is a help viewer.
              //If it is, change the look of the help viewer
              //to what we want.
              Frame m_helpFrame = null;
              public void windowDeactivated(WindowEvent e) {
              if (m_helpFrame != null)
                   return;
              Frame[] frames = getFrames();
              for (int k = 0; k < frames.length; k++) {
                   if (!(frames[k] instanceof JFrame))
                   continue;
                   JFrame jf = (JFrame)frames[k];
                   if (jf.getContentPane().getComponentCount()==0)
                   continue;
                   Component c = jf.getContentPane().
                   getComponent(0);
                   if (c == null || !(c instanceof JHelp))
                   continue;
                   m_helpFrame = jf;
                   //now that we know the Frame, we can change the title icon
                   final Image image2 = <your icon here>
                   m_helpFrame.setIconImage(image2);
                   JHelp jh = (JHelp)c;
                   for (int s=0; s<jh.getComponentCount(); s++) {
                   c = jh.getComponent(s);
                   if (c == null || !(c instanceof JToolBar))
                        continue;
                   JToolBar jtb = (JToolBar)c;
                   //now that we've accessed the toolbar, we can
                   //modify the look of the buttons.
                   for(int i=0; i<jtb.getComponentCount(); i++) {
                        Component comp = jtb.getComponentAtIndex(i);
                        if(comp instanceof JButton) {
                        JButton button = (JButton)comp;
                        button.setBorder(null);

  • Can't get the java tray icon or the console to appear

    I can't get the java tray icon or the console to appear on any system that I've tested my applications in.
    I'm using Windows XP mostly and I've also tested on Windows 2000 and 2003. I'm using jre 1.6. I've already set the icon to appear and the console to show on the advanced tab on the java icon in the control panel. I've even tried another application from another author thinking it might be something in the code of my own application.
    I need the console available on the client systems for troubleshooting but I can't get it to open and I can't open it manually from the tray icon because the icon is not there.
    I seem to remember seeing the tray icon and the console on other systems/applications in the past so what do you think is the problem?

    AFAIK, the Sun/Oracle-provided "Java Console" only works (appears) with applets and Java Web Start applications. It shows some information that is unique to those environments, and provides a place for System.out data to be written.
    For a Java application, if the application is started with the java command (as opposed to the javaw command) System.out data is written to the command/cmd window that is created.
    If you need more that that for an application, then [this article|http://www.developer.com/java/other/article.php/630821/Creating-a-Custom-Java-Console.htm] may be of interest. It's old, but still appears to be valid. Note that current versions of Java contain a class java.io.Console. This class should be able to be used as a replacement for the custom Console class that is used in the article.

  • Replacing Java cup icon - ATL tab

    Hi,
    I want to replace the Java cup icon with one of my icons.
    I can do that OK using the JFrame.setIconImage() method. (By the way, I think it should have been possible to do so using the Look and Feel only rather than explicitely setting the icon on each frame...)
    My problem is that on Windows, when switching from one application to another using the ALT - Tab keys, the icon that is displayed is my icon uglyly enlarged...
    Is there a way to setup TWO images to be used :
    - one (16*16) for the small icon on top of the window and
    - another one (32*32) that would be used for the application switching screen ???
    How come the coffee cup is actually nice looking when displayed on the application switching screen ?

    Unfortunatly you can't do that.
    Try to use a 32*32 icon only. It will be streched automatically to 16*16 in the frame title bar.
    Denis

  • I'd like a basic icon in the lock screen to indicate Text, Email etc.  Seems all I can have in lock screen is full alert (with or without detail) or am I missing something?

    I'd like a basic icon in the lock screen to indicate Text, Email etc.  Seems all I can have in lock screen is full alert (with or without detail) or am I missing something?

    I'd like a basic icon in the lock screen to indicate Text, Email etc.  Seems all I can have in lock screen is full alert (with or without detail) or am I missing something?

  • Java option icon not displaying AND Java not working, even after deleting and re-installing Java

    Hi, I have uninstalled and re-installed Java. When I look at Add-ons, it shows Java Platform SE7 U17 10.17.2.2 and Java deployment Toolkit 7.0.17… 10.17.2.2 enabled. But it is not working – and I do not see the Firefox plugin to allow occasional use of Java.
    One useful thread which discusses several difficulties in detail is
    https://support.mozilla.org/en-US/questions/944956?esab=a&as=aaq
    I tried to follow scrumpyjoe’s advice in this thread:
    “This fixed it for me (32 bit windows) after installing Version 7 Update 10, but not seeing the plugin:
    1) start regedit
    2) navigate to HKEY_LOCAL_MACHINE\SOFTWARE\MozillaPlugins
    3) right click, add New Key, name: @java.com/JavaPlugin,version=10.xx.xx
    4) click on it, then right click and add new string value, name: path
    5) right click, Modify, change value data to: C:\Program Files\Java\jre7\bin\plugin2\npjp2.dll [check if this is the right dll for your setup]
    6) exit regedit
    7) start FF”
    - but (unless I have made a mistake) it has not resolved my problem.
    What can I try next, please ?
    Background:
    Asus NX90jq
    Intel core I7
    700GB free disk space
    16384Mbytes memory
    O/S: Windows 7 Ultimate, 64-bit
    UPDATE 2apr13
    I have now unistalled and re-installed Firefox 20.0. restored preferences etc. using MozBackup, and Java Platform and Java Toolkit10.17.2.2. both show as working Add-ons - BUT STILL NO JAVA AND STILL NO RED ICON IN TOOLBAR. What is going on, please ?

    I don't understand any of these replies. How do I get Java to run for Pogo.com? I had no problems a week ago. I do not have the red icon. I am not a programer so keep it simple. I am a 59 year old speech therapist.
    [email protected] HELLLLLLP

  • How to change the java cup icon for all the JFrames?

    Hi,
    I would like to know if I can change the Java cup defult icon that appears in the upper left corner of the JFrames in one time, instead of setting the JFrame's icon in every created JFrame.
    Regards,
    Gabriel

    Then don't set the parent to null. If you don't want a parent, just set it to
    JOptionPane.showMessage(new IconFrame(), ...
    [\code]
    where IconFrame extends JFrame and sets the icon in it's constructor.  The optionpane will then use the icon from it's parent frame.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Lost Java DeskTop Icon

    hello
    I am new to Java programming. I have downloaded and installed free Java version JDK 6 SE on my computer. After the download and install was complete I received a message saying that the download was successful. Then clicking on the newly created desktop icon which then prompted me to reinstall once again. But I managed to get this issue resolved.
    But I no longer have an icon situatated on desktop for me double click on to launch this program. I am using windows 7 64 bit computer. Should there be a desktop icon set up on the computer or perhaps not?
    What can I do to get this program to open up for me in the hopes of setting up a short cut to desktop?

    What do you mean by "launch this program"? The JDK is not a program (at least not in the usual sense). Think of it as a library that other programs (including those you write) can use.

  • Using the java (tm) Icon...

    If you've made an application, can you use the JAVA icon (as in the left top corner of this page) in the aboutdialog of your application?
    Is it legal?
    thx,
    sjg

    Short answer, no. See http://www.sun.com/smrc/logos/brand

  • Basic icons at the bottom of the phone

    My sons have gotten hold of my iPhone. Safari has disappeared from the basic four icons on the bottom.... how do I get it back on there?
    Thanks!

    errrrrgh. Now my two year old did the same thing to my husband's iPhone.... and resetting didn't work for his Anyone else have any ideas? I really don't want to restore (and lose a bunch of stuff) if I don't have to.
    Help? Please?

  • Java Basic CMYK color scheme Support

    Is java has basic CMYK color scheme suppotr as i look in java.awt.Color class of Java6 and java7. We can only pass RGB in color constructor. I used some libraries but it only supports CMYK convert to RGB not directly choosing color from CMYK. Please suggest if any library available in Java to directly get color from CMYK color scheme.
    Edited by: user9098607 on Aug 11, 2011 2:41 AM

    You'll need to get a ICC profile . After that you can use the http://download.oracle.com/javase/1.4.2/docs/api/java/awt/color/ICC_ColorSpace.html class for your needs . A quick google search would give you the code required.

Maybe you are looking for

  • How do I delete a file sharing account?

    I was setting up Time Machine on my wife's new Air to back up to a USB hard drive on my iMac. When I was sharing the drive, I added her as a user and must have mistyped the password as I can't login. I've set up a temp account and all is well with Ti

  • What kind of monitor do I get as a 2nd one for the imac 2013

    Hi Guys, I need to know what type of 2nd monitor will I need to buy as a 2nd screen for the new imac 27" 2013. I have seen a few online, but unsure what to get. The ones i have seen have a hdmi port. Will that work? And I am guessing I will need a th

  • Loading a program through terminal

    Hi im not exactly sure what command to use in xterm when i want to load a certain program. how do i go about finding what command to use, to load the program i want? so far ive figured out that typing in the name of most programs in xterm will then l

  • Macbook Pro mouse/keyboard non responding while system still running ...

    Hi, I just purshased a brand new MacBook Pro 3 weeks ago and I am experiencing a very annoying troubleshotting : while using the Mac for standard applications ( Firefox, Thunderbird, MacMessenger ), the system seems block as nothing is responding ( m

  • Documentation Types in projects

    Is it possible to differentiate Documentation Types selectable in RMMAIN and Solar01/02 ? The reason we want this is that we produce project documentation (sub set of the Documentation Types) in RMMAIN and we produce the Solution documentation (anoth