answersLogoWhite

0


Best Answer

javax.swing.JOptionPane

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What class would you use in the javax to create a dialog box?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is javax in java?

java.* libraries were supposed to have been core libs, and javax.* to be standard extensions with the possibility of promotion to core libs (i.e., classes in javax libs could be promoted to java namespaces). However, this showed a certain lack of foresight by not considering the fact that moving the namespaces would require everyone using the classes to change their references-- the criterion for promotion being the adoption rate of the library also guaranteed that the impact to existing code would be the greatest for any functionality promoted. Nowadays, the difference is largely academic since the widely adopted javax.* libs are included in the core download, but the namespaces aren't changed. In practice, it's more important what is in the JRE download than what namespace something is in.


How do you create a draft class in nba 2k13?

If you would like to create a draft class you need to got to your association and start a new season. AT the beginning of every season it asks if you would like to Auto Generate the incoming upperclassmen/lower class men, create your own, or download from 2kShare. Then when you start to create your own the game will automatically make a rookie class and then you get to edit all of them by name, height, skills, weight ,appearance, etc.


Could array may have elements that are numbers and strings?

In Java:Not as primitives; but I believe you could create an array of Objects, and then initialize the elemnets as subtypes of the Object class, i.e., any class. I don't think this would be very practical (in Java); if (for example) you need to store information about people's names with their ages, create a class called "Person" that has those two attributes, then create an array of Persons.In Java:Not as primitives; but I believe you could create an array of Objects, and then initialize the elemnets as subtypes of the Object class, i.e., any class. I don't think this would be very practical (in Java); if (for example) you need to store information about people's names with their ages, create a class called "Person" that has those two attributes, then create an array of Persons.In Java:Not as primitives; but I believe you could create an array of Objects, and then initialize the elemnets as subtypes of the Object class, i.e., any class. I don't think this would be very practical (in Java); if (for example) you need to store information about people's names with their ages, create a class called "Person" that has those two attributes, then create an array of Persons.In Java:Not as primitives; but I believe you could create an array of Objects, and then initialize the elemnets as subtypes of the Object class, i.e., any class. I don't think this would be very practical (in Java); if (for example) you need to store information about people's names with their ages, create a class called "Person" that has those two attributes, then create an array of Persons.


What is the dialog of an opera?

In some types of opera and operetta, there is spoken dialog between musical numbers to advance the plot. But in "Grand Opera", traditionally every word of what would normally be dialog is sung.


What kind of dialog boxes does Microsoft Office programs use for performing actions such as opening and saving files?

There are a wide range of Microsoft Office programs, so there is a wide range of dialog boxes. There are some that they all use, sometimes referred to as Common Dialog boxes. These would include the Open Dialog box, the Save Dialog box and the Print Dialog Box. Others are similar, but not exactly the same in each application, such as formatting dialog boxes.


Can the function of another class be in another class?

Yes it can but why would you repeat the functions. If you create a module and say Public Function all you need to do call the function name and you will be able to use it.


Socrates is famous for what is referred to as the Socratic Method or Socratic dialog?

The Socratic Dialog I believe. Sorcates would teach his lesson, and then he would ask his pupils questions to see if they have been listening. And then he would see if they have any questions so he would know that they understood what he taught.


What is the size of an empty class?

1 byte. An empty class cannot be zero bytes otherwise it would be impossible to create an array of empty class objects, thus a dummy member is used to give it the minimum addressable size.


Looking at a script how would an actress recognize her dialog?

It will have the name of her character and a colon


How do you create a multi level hierarchy in java?

First you would have to design the class hierarchy; perhaps on paper and pencil. Then you create the classes so that one depends on another, using the extends keyword.


Why do you need a constructor as a class member?

A constructor is not a mandatory member that we need to code specifically for a class. While creating a class, even if we miss out coding the constructor, Java would create a default constructor all by itself. The constructor is usually the place where we initialize things that are required by the class. Hence it is a good practice to code the constructor for our class. Tip: If you do not want anyone to instantiate your class, you can declare the constructor as private. In that way no other class can instantiate your class.


What is need for static method?

Static methods are methods that can be invoked without creating an instance of the class that contains them. They are needed in cases where the programmer would not want to create multiple instances of a class to execute a method.