How many frameworks available in Java?

How many frameworks available in Java? Which are most commonly used?
Edited by: Passion on Jun 16, 2008 2:50 AM

the number of available frameworks is a function of time, climbing asymptotically to a number n where n is larger than 0 and probably smaller than infinity.
The value of n is an unknown, and possibly cannot be known at any time Java is in active use.

Similar Messages

  • I'm trying to back up 10.6.8 (snow leopard) and all my files before upgrade to Mavericks.  I have an old but sturdy external hard drive...how many GB available will I probably need to back up the whole thing? thanks!

    I'm trying to back up 10.6.8 (snow leopard) and all my files before upgrade to Mavericks.  I have an old but sturdy external hard drive...how many GB available will I probably need to back up the whole thing? thanks!

    You will need a separate partition unless you plan to use the entire drive. You will need an amount of space somewhat larger than the total space now used on your startup drive. If you select the startup drive's Desktop icon, then press COMMAND-I to open the Get Info window. Used space will be shown in the topmost panel. Add a GB or two to that number to determine how much space you'll need for the backup.
    Do not backup on a drive that has any files you want to keep. You can make a bootable backup as follows:
    Clone using Restore Option of Disk Utility
      1. Open Disk Utility in the Utilities folder.
      2. Select the destination volume from the left side list.
      3. Click on the Restore tab in the DU main window.
      4. Select the destination volume from the left side list and drag
           it to the Destination entry field.
      5. Select the source volume from the left side list and drag it to
          the Source entry field.
      6. Double-check you got it right, then click on the Restore button.
    Destination means the external backup drive. Source means the internal startup drive.

  • How many classes should a .java file contain?

    Are there any general guidelines on how many Java classes should be contained in a single .java file? I've been creating a new .java file for each class I write but see examples in Sun's Java tutorial where there are at least two classes in a single .java file. One such case is the TableDemo example at
    http://java.sun.com/docs/books/tutorial/uiswing/components/example-swing/TableDemo.java
    Thanks.

    The example you point to isn't really more the one class in one java file. It makes use of an inner class. An inner class is something different! As far as I understand it, it is mainly used to implement some behaviour (in this case AbstractTableModel behaviour). If the MyTableModel was in a separate class file, it couldn't access the variable of the main TableDemo class. So they use an inner class.
    So unless you need inner classes, this example is no reason to put more than one class in a .java file. In general, just put one class in a .java file. It's easier for everybody.

  • Find out how many threads in a Java program

    Why do I get ID 20, ID 21, ID 22 by runing the following code? I would like to know if i acturely create a thread then stop it probably. somehow i need to call it two more times in my program.
    start() and interrrupt() are default thread methods. when I call start() it goes to my run() method. I am worry about if the thread 20 and 21 are still doing something after creating thread 22
    main = new Thread(this);
            System.out.println("ID " + main.getId());
            main.start();
            main.interrupt();
            main = null;
            main = new Thread(this);
            System.out.println("ID " + main.getId());
            main.start();
            main.interrupt();
            main = null;
            main = new Thread(this);
            System.out.println("ID " + main.getId());
            main.start();
            main.interrupt();
            main = null;

    Here is my code, I would like to know if I implement my threads nicely here, I am worrying those threads are still alive, they should be interrupted. but why I got different thread ID, when i resume it?
    // Two player board game play in turn. Human plays first as red, the computer plays
    // second as blue. I used thread here for repainting the applet, because the computer
    // evaulation function is quite slow, the gui won't draw human player's move until it
    // finishs calculating computer's move. the solution i use is interrupting the current
    // thread, let the gui repaint before calculating the computer move.
    // Board.java
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class Board extends Canvas implements Runnable, MouseListener {
        private Thread main;
        private int state = 0;
        private double aMove = 0;
        public void init() {
            addMouseListener(this);
        public void run() {
            removeMouseListener(this);
            main.interrupt();
            main = null;
            repaint();
            // calculate computer's move, then making move
            // this is a slow evalution function goes here
            for (int i = 0; i <10000000; i++) {
                aMove = Math.pow(0.1,1000000000);
            state = 1;
            repaint();
            System.out.println("Blue makes a move on postion " + aMove);
            state = -1;
            addMouseListener(this);
        public void paint(Graphics g) {
            System.out.println("paint");
            if (state == 1) {
                g.setColor(Color.blue);
                g.fillOval(0, 0, 20, 20);
            if (state == -1) {
                g.setColor(Color.red);
                g.fillOval(0, 0, 20, 20);
        public void mouseReleased(MouseEvent e) {
            // human player makes a move on postion 0;
            aMove = 0;
            System.out.println("Red makes a move on postion " + aMove);
            state = -1;
            repaint();
            // Why the following gives me different thread here every time?
            main = new Thread(this);
            System.out.println("Thread ID: "+ main.getId());
            main.start();
        public void mousePressed(MouseEvent e) {
        public void mouseEntered(MouseEvent e) {
        public void mouseExited(MouseEvent e) {
        public void mouseClicked(MouseEvent e) {
    // appletdemo.java
    import java.applet.*;
    import java.awt.*;
    public class appletdemo extends Applet{
        Board b = new Board();
        public void init() {
            System.out.println("start ");
            setLayout(new BorderLayout());
            this.add(b);
            b.init();
            setVisible(true);
    }

  • Photoshop elements 11,how many installation available

    photoshop elements 11, I have 3 computers at home, can i install this program into all of them? i have not installed in any of them yet?

    your license is for 2 installations/activations.

  • How many user licenses my creative cloud account has?

    I currently have an Adobe Creative Cloud account, we have purchased additional licenses and have linked them to this account. just wanted to know how I check to see how many are available and now many are allocated to computers.

    Hi IT_Orcon,
    Please refer the kb: https://helpx.adobe.com/creative-cloud/creative-cloud-teams.html .
    Regards,
    Romit Sinha

  • How many softwares are there to create a setup file for java programs

    Hi, i am new to java
    I want to know how many softwares are there to create a setup file for java programs.
    I know one software i.e java launcher to create a setup file.
    I want to know about any other softwares are available to create a setup file for java programs.
    I created a setup file for swings program in JCreator.
    And don't think that i am wastiing ur time with this question .
    Help me regarding this topic.
    Thanks in Advance

    superstar wrote:
    I want to know how many softwares are there to create a setup file for java programs.13, no wait, 42.
    I know one software i.e java launcher to create a setup file.You should clearly identify what you think you already know.
    I want to know about any other softwares are available to create a setup file for java programs.
    I created a setup file for swings program in JCreator.Is this the one you talked before, or is this different?
    And don't think that i am wasting ur time with this question .Why should I not think that?

  • How many connection opened for webdynpro java

    Hi,
        I have 2 webdynpro java application.The applications sharing  the same backend function module.Could anyone tell me
      How many connection will be established when the same user wants to open 2 different application but these 2 application shares the same function module.
    Thanks
    Kanai

    Hi,
    In webdybnpro ,each Model in an Application utilizes a seperate Connection.If u create JCO connection pool for the User then while connecting to backend
    1)The JCO connection pool Manager will open a new connection pool and opens the first connection.
    The next available connection from the pool is allocated to the model object.
    2)The model object is now able to invoke the required functionality in the ABAP system.
    3) When the connection is no longer required by the application, it is returned to the pool.
    4) The connection remains logged on to the backend system until either the next application
    request is received, or the connection timeout is reached.
    5) If no application requests arrive before the timeout is reached, the connection is flagged
    for closure.
    Note:-If an Application contains 2 models which are connecting to same ABAP system then second Model can be told to share the same JCo connection used by First model This is done by calling its setConnectionProvider() method.
    Regards,
    Sunaina Reddy T

  • HT4059 Being new to iBook publishing I need to know if stats are available to determine how many times my iBook has been downloaded. Can anyone help please? Mr Ignorant

    Being new to iBook publishing I need to know if stats are available to determine how many times my iBook has been downloaded. Can anyone help please? I need to persuade someone that this really is worthwhile. Mr Ignorant.

    The only people who can possibly assist you with this is Apple Customer Relations, call your local Apple contact number and ask for Customer Relations then explain your situation clearly and politely (be firm but don't rant).
    You might want to investiage what the local laws are regarding defective goods and 'fit for use' definitions on warranties etc. Consumer Protection can be a useful tool to use or bargain with if needed ...

  • How many web.xml in a java application

    Hi,
    can anyone give tell the answer for this question "How many web.xml in a java application?"

    1Why ?Because the Web container refers to only one web.xml for one web application.
    I havent heard of an application having more than 1 web.xml
    How?It reads all the definitions of servlet mappings, filters, welcome-file etc from this file itself.
    Where?From the following folder ...
    /WEB-INF
    By the way ..... the way you questioned me was amuzing ... Why? How ?Where ? Its funny :D
    I actually wanted to reply as below ..
    Why ?Why not
    How?
    Wait lemme think ....ummm... What do you mean how??
    Where ?
    Inside the web ;-)
    -Rohit

  • How many iPhone 5's are available?

    if I don't wake up at 3:01am to pre-order my iPhone 5 will there still be Iphone 5's available at 6:30am? Is there a limit as to how many phones verizon is going to pre-order? Reason... I was in line to buy my 4S and they announced in the store that there were only 4 more 4S's available in the store. So I was told that I would have to pre-order and wait until they made more to be sold. :/ basically I don't want to be up until 330 if I don't have to!

    its a gamble it might or it might not, the business preorder doesn't start till 10 am so they must have some set aside for each. i would recommend just taking a nap setting an alarm get it over with and go back to sleep.

  • How many movies are available

    I'm considering an ATV. How many movies are available for rent? Is it the same catalog as in iTunes or is there more on ATV?
    Thanks,
    NM

    i believe there is an un-official website that lists and updates when you movies are added.
    if you have a search thru the forum you will find it mentioned.

  • How many components in Java

    Hi, this is just a simple theory question. Is there one out there could tell me the answer. How many components are there in Java ?
    Thanks,
    choongteck

    grins
    As many as are derived from the Component-Class plus 1 (for the Component-Class itself)?
    Would you like to know the total number of classes or the number of instances of the classes? :)
    greetings Marsian

  • How to findout how many  instances are available in one server

    how many instances are available in one server

    You can also check (in Unix) /etc/oratab to list all Oracle instances, it should be updated. That's not so true...
    example:
    ps -aef | grep pmon | grep -v grep
    oracle   14867     1  0 Jul29 ?        00:00:00 ora_pmon_TEST9I
    oracle   15024     1  0 12:10 ?        00:00:00 ora_pmon_SECOND9I
    oracle   15172     1  0 12:11 ?        00:00:00 ora_pmon_THIRD9I
    cat /etc/oratab
    *:/opt/oracle/920:NThis topic was discussed here Oracle9i on Redhat and there you could find other suggestions.

  • How many verticals are available in OCOD

    Hello ,
    How many verticals are available in OCOD

    1. Lifesience-
    a. Pharma
    b. Medical
    2. Financial-
    a.GWM
    b.Insurance
    3. High Tech
    4. Automotive
    Some more to come..
    Hope this helps.
    Rgds,
    Amit Sahu

Maybe you are looking for

  • Stack Size

    For an assignment I had to create a postfix calculator, and one of the errors we had to catch was: if there is more then one integer left in the stack when printing the final result, it needs to give an error message and exit. We were provided the im

  • Solutions for connecting dual screens to MacBook Pro?

    Anyone have any solutions for connecting TWO (2) individual displays to a MacBook Pro?  I am currently using "Matrox Power Desk" but this thing *****!  I have two Apple 23" Displays (they're older, probably from 2006ish) and want a better method for

  • How do i update my search engine

    i cannot connect to my online banking

  • Oracle SQL Developer Screen Flickers - Problem Fixed - JDK 1.6

    Hi, I'm using the latest version of Oracle SQL Developer (sqldeveloper-1.1.2.2579) on a Windows XP SP2 system and the application screen constantly flickers. Has anyone else experience this behavior? It's really annoying. Message was edited by: bitma

  • OID, Oracle 8i/9i Database, Oracle 9i AS

    Can somebody clarify succinctly what constitutes an OID? I believe there is an OID server which needs an Oracle database (to store the underlying data). But some documentation on Oracle site says OID is a part of Oracle 9i AS. Can somebody clear my c