CSE Dept Engineering Topics List

with Example Java Programs

Subject and UNIT: Object Oriented Programming: Unit V: JAVAFX Event Handling, Controls and Components

Mouse event is fired when the mouse button is pressed, released, clicked, moved or dragged on the node.

Syntax with Example Java Programs

Subject and UNIT: Object Oriented Programming: Unit V: JAVAFX Event Handling, Controls and Components

Event means any activity that interrupts the current ongoing activity. For example: when user clicks button then it generates an event. To respond to button click we need to write the code to process the button clicking action.

Syntax with Example Java Programs

Subject and UNIT: Object Oriented Programming: Unit V: JAVAFX Event Handling, Controls and Components

The graphical User Interface (GUI) is an essential part of any window based application.The interaction between user and the application program is possible with the help of User Interface (UI) controls that are placed on the screen.

Features, Major Components, Important Methods, Property Binding, Example Java Programs

Subject and UNIT: Object Oriented Programming: Unit V: JAVAFX Event Handling, Controls and Components

JavaFX was originally developed by Chris Oliver, when he was working for a company named See Beyond Technology Corporation, which was later acquired by Sun Microsystems in the year 2005.

I/O, Generics, String Handling | Object Oriented Programming

Subject and UNIT: Object Oriented Programming: Unit IV: I/O, Generics, String Handling

Stream is basically a channel on which the data flow from sender to receiver.An input object that reads the stream of data from a file is called input stream and the output object that writes the stream of data to a file is called output stream.

Methods with purpose and Example Java Programs

Subject and UNIT: Object Oriented Programming: Unit IV: I/O, Generics, String Handling

The StringBuffer is a class which is alternative to the String class. But StringBuffer class is more flexible to use than the String class.

with Example Java Programs

Subject and UNIT: Object Oriented Programming: Unit IV: I/O, Generics, String Handling

We can find the length of a given string using the method length(). Following program shows the use of length() method for strings

Definition, Syntax of String Constructor, Method with Description, Example Java Programs

Subject and UNIT: Object Oriented Programming: Unit IV: I/O, Generics, String Handling

String is a collection of characters. In Java String defines the object. The string is normally used to represent the collection of characters

Generics | Java OOPs

Subject and UNIT: Object Oriented Programming: Unit IV: I/O, Generics, String Handling

In Java, generic types are compile time entities. The runtime execution is possible only if it is used along with raw type.Primitive type parameters is not allowed for generic programming.

with Example Java Programs

Subject and UNIT: Object Oriented Programming: Unit IV: I/O, Generics, String Handling

Many times it will be useful to limit the types that can be passed to type parameters. For that purpose, bounded types are introduced in generics.

with Example Java Programs

Subject and UNIT: Object Oriented Programming: Unit IV: I/O, Generics, String Handling

A generic class contains one or more variables of generic data type. Following is a simple example which shows how to define the generic class.

with Example Java Programs

Subject and UNIT: Object Oriented Programming: Unit IV: I/O, Generics, String Handling

Generic method allows a programmer to write a generalised method for the methods of different data types.Suppose we want to print an array of integer, float and character type elements then normally we write three different methods performing the corresponding task.