|
What is 1000Projects
'1000projects.com' is an educational content website dedicated to finding and realizing Final Year Projects, IEEE Projects, Engineering Projects, Science Fair Projects, Project Topics, Project Ideas, Major Projects, Mini Projects, Paper Presentations, Presentation Topics, IEEE Topics, .Net Projects, Java Projects, PHP Projects, VB Projects, SQL Projects, C & DS Projects, C++ Projects, Perl Projects, ASP Projects, Delphi Projects, HTML Projects, Cold Fusion Projects, Java Script Projects, Btech Projects, BE Projects, MCA Projects, Mtech Projects, MBA Projects, Project on Software, CBSE Projects, Testing Projects, Embedded Projects, Chemistry Projects, Electronics Projects, Electrical Projects, Science Projects, Mechanical Projects, Mba project Reports, Placement papers, Sample Resumes, Entrance Exams, Technical Faq's, Puzzles, etc
how it works?
Everything on this site is submitted by the students in this professional community. You Can submit your Projects, Project Topics & Ideas to info.1000projects{at}gmail.com after you submit your project/project Idea/Abstract/Seminar Topics, These are being verified and approved by our administrator. after approval of this project/project Idea/Abstract/Seminar Topics, It can be shown on 1000projects.com so that other users can read/discuss it.The entire content on this website is Only For Educational Purpose, Non Commercial use!
Please help us/Other Users by sending projects/project Ideas/Abstracts/Seminar Topics. Thanking You!!!!!
Category Articles
Why should any swing call back implementation execute quickly?
Added on Sat, Dec 26, 2009
Callbacks are invoked by the event dispatch thread. Event dispatch thread blocks processing of other events as long as call back method executes. Read More
What is AWT?
Added on Sat, Dec 26, 2009
AWT stands for Abstract Window Toolkit. AWT enables programmers to develop Java applications with GUI components, such as windows, and buttons. The Java Virtual Machine ( JVM) is responsible for translating the AWT calls into the appropriate ... Read More
What is Java Swing?
Added on Sat, Dec 26, 2009
Swing is a GUI toolkit for Java. It is one part of the Java Foundation Classes (JFC). Swing includes graphical user interface (GUI) widgets such as text boxes, buttons, split-panes, and tables. Swing widgets provide more sophisticated GUI... Read More
What are the advantages of the event-delegation model over the event-inheritance model?
Added on Sat, Dec 26, 2009
Event-delegation model has two advantages over event-inheritance model. a)Event delegation model enables event handling by objects other than the ones that generate the events. This allows a clean separation between a component's design and its... Read More
What is an event handler in swing?
Added on Sat, Dec 26, 2009
An event handler is a part of a computer program created to tell the program how to act in response to a specific event. Read More
What is a layout manager?
Added on Sat, Dec 26, 2009
A layout manager is an object that is used to organize components in a container. Read More
Which containers use a border Layout as their default layout in swing?
Added on Sat, Dec 26, 2009
The window, Frame and Dialog classes use a border layout as their default layout. Read More
What is the preferred size of a component?
Added on Sat, Dec 26, 2009
The preferred size of a component is the minimum component size that will allow the component to display normally. Read More
What method is used to specify a container's layout
Added on Sat, Dec 26, 2009
The setLayout() method is used to specify a container's layout. Read More
Which containers use a FlowLayout as their default layout?
Added on Sat, Dec 26, 2009
The Panel and Applet classes use the FlowLayout as their default layout. Read More
Which method of the Component class is used to set the position and size of a component?
Added on Sat, Dec 26, 2009
setBounds Method of the Component class is used to set the position and size of a component. Read More
What is JFC?
Added on Sat, Dec 26, 2009
JFC stands for Java Foundation Classes. The Java Foundation Classes (JFC) are a set of Java class libraries provided as part of Java 2 Platform, Standard Edition (J2SE) to support building graphics user interface ( GUI) and graphics functionality... Read More
What are heavyweight components ?
Added on Sat, Dec 26, 2009
A heavyweight component is one that is associated with its own native screen resource (commonly known as a peer). Read More
What is lightweight component?
Added on Sat, Dec 26, 2009
A lightweight component is one that "borrows" the screen resource of an ancestor (which means it has no native resource of its own -- so it's "lighter"). Read More
What is double buffering ?
Added on Sat, Dec 26, 2009
Double buffering is the process of use of two buffers rather than one to temporarily hold data being moved to and from an I/O device. Double buffering increases data transfer speed because one buffer can be filled while the other is being emptied. Read More
What is clipping?
Added on Sat, Dec 26, 2009
Clipping is the process of confining paint operations to a limited area or shape. Read More
What is the What is the difference between invokeAndWait() and invokeLater()? ?
Added on Sat, Dec 26, 2009
invokeAndWait() method in swing is synchronous. It blocks until Runnable task is complete. InvokeLater() method in swing is asynchronous. It posts an action event to the event queue and returns immediately. It will not wait for the task to complete Read More
What is the difference between applications and applets?
Added on Sat, Dec 26, 2009
Application must be run explicitly within Java Virtual Machine whereas applet loads and runs itself automatically in a java-enabled browser. Application starts execution with its main method whereas applet starts execution with its init method.... Read More
Which method is used by the applet to recognize the height and width?
Added on Sat, Dec 26, 2009
getParameters() Method is used by the applet to recognize the height and width. Read More
When we should go for codebase in applet?
Added on Sat, Dec 26, 2009
If the applet class is not in the same directory, codebase is used. Read More
Which method is used for setting security in applets?
Added on Sat, Dec 26, 2009
setSecurityManager() Method is used for setting security in applets Read More
What is an event and what are the models available for event handling?
Added on Sat, Dec 26, 2009
Changing the state of an object is called an event. An event is an event object that describes a state of change. In other words, event occurs when an action is generated, like pressing a key on keyboard, clicking mouse, etc. There different types of... Read More
What are the differences between Swing and AWT?
Added on Sat, Dec 26, 2009
AWT is heavy-weight components, but Swing is light-weight components. AWT is OS dependent because it uses native components, But Swing components are OS independent. We can change the look and feel in Swing which is not possible in AWT. Swing takes... Read More
What is an event in Swing?
Added on Sat, Dec 26, 2009
Changing the state of an object is called an event. Read More
|