1 / 26

Pre-assessment Questions

Pre-assessment Questions

phudson
Download Presentation

Pre-assessment Questions

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Pre-assessment Questions • You need to create an application that validates the username and password of various employees in a company using the entries in the employee database. The application validates the username and password every time the employee makes a request for the database records, reports, or company resources. Select the type of JavaBean that should be used to create such an application. • Control JavaBean • Container JavaBean • Invisible runtime JavaBean • Hidden JavaBean JDBC and JavaBeans

  2. Pre-assessment Questions (Contd.) • Which of the file enables you to start the BDK in the Windows environment? • run.bat • run.sh • bdkrun.bat • bdkrun.sh • What is the name of the BDK window that lists the pre-defined events for a sample JavaBean? • EventListener • EventTargetDialog • actionPerformedDialog • Properties JDBC and JavaBeans

  3. Pre-assessment Questions (Contd.) • The compressed file for a JavaBean application are stored as: • Manifest file • Event file • JAR file • BeanInfo file • How can you modify the public properties of a JavaBean in the BDK environment? • Using property editors • Using property sheets • Using properties pallete • Using BeanBox window JDBC and JavaBeans

  4. Solutions to Pre-assessment • Questions • a. Control JavaBean • a. run.bat • b. EventTargetDialog • c. JAR file • b. Using property sheets JDBC and JavaBeans

  5. Objectives • In this lesson, you will learn about: • Different types of JavaBean properties • Creating custom events • Using JavaBeans in applications JDBC and JavaBeans

  6. JavaBean Properties • JavaBean properties: • Are the private data members of the JavaBean classes. • Are used to accept input from an end user in order to customize a JavaBean. • Can retrieve and specify the values of various attributes, which determine the behavior of a JavaBean. JDBC and JavaBeans

  7. JavaBean Properties (Contd.) • Types of JavaBeans Properties • Simple properties • Boolean properties • Indexed properties • Bound properties • Constrained properties JDBC and JavaBeans

  8. JavaBean Properties (Contd.) • Simple Properties: • Refer to the private variables of a JavaBean that can have only a single value. • Are retrieved and specified using the get and set methods respectively. • The syntax of get method is: • public return_type get<PropertyName>() • The syntax of set method is: • public void set<PropertyName>(data_type value) JDBC and JavaBeans

  9. JavaBean Properties (Contd.) • Boolean Properties: • Have either of the two values, TRUE or FALSE. • Are retrieved and specified using the following methods: • public boolean is<PropertyName>() • public boolean get<PropertyName>() • public void set<PropertyName>(boolean value) JDBC and JavaBeans

  10. JavaBean Properties (Contd.) • Indexed Properties: • Are indexed under a single name, with each index being an integer value. • Enable you to set or retrieve the values from an array of property values. • Are retrieved using the following get methods: • public int[] get<PropertyName>() • public property_datatype get<PropertyName>(int index) • Are specified using the following set methods: • public void set<PropertyName>(int index, property_datatype value) • public void set<PropertyName>(property_datatype[] property_array) JDBC and JavaBeans

  11. JavaBean Properties (Contd.) • Bound Properties: • Are the properties of a JavaBean that inform its listeners about changes in its values. • Are implemented using the PropertyChangeSupport class and its methods. • Are always registered with an external event listener. JDBC and JavaBeans

  12. JavaBean Properties (Contd.) • Constrained Properties: • Are the properties that are protected from being changed by other JavaBeans. • Are implemented using the VetoableChangeSupportclass. • Are registered with an external event listener that has the ability to either accept or reject the change in the value of a constrained property. • Can be retrieved using the get method. The prototype of the get method is: • public string get<ConstrainedPropertyName>() • Can be specified using the set method. The prototype of the set method is: • public string set<ConstrainedPropertyName>(String str)throws PropertyVetoException JDBC and JavaBeans

  13. Handling Events in JavaBeans • User-defined JavaBeans interact with the help of user-defined events, which are also called custom events. • You can use the Java event delegation model to handle these custom events. • The components of the event delegation model are: • Event Source: Generates the event and informs all the event listeners that are registered with it. • Event Listener: Receives the notification, when an event source generates an event. • Event Object: Represents the various types of events that can be generated by the event sources. JDBC and JavaBeans

  14. Handling Events in JavaBeans (Contd.) • Creating Custom Events • The classes and interfaces that you need to define to create the custom JavaBean events are: • An event class to define a custom JavaBean event. • An event listener interface for the custom JavaBean event. • An event handler to process the custom JavaBean event. • A target Java application that implements the custom event. JDBC and JavaBeans

  15. Handling Events in JavaBeans (Contd.) • Creating the Event Class • The event class that defines the custom event extends the EventObject class of the java.util package. For example, • public class NumberEvent extends EventObject • { • public int number1,number2; • public NumberEvent(Object o,int number1,int number2) • { • super(o); • this.number1=number1; • this.number2=number2; • } • } JDBC and JavaBeans

  16. Handling Events in JavaBeans (Contd.) • Creating Event Listeners • When the event source triggers an event, it sends a notification to the event listener interface. • The event listener interface implements the java.util.EventListener interface. • The target application that uses the custom event implements the custom listener. For example, • public interface NumberEnteredListener extends EventListener • { • public void arithmeticPerformed(NumberEvent mec); • } JDBC and JavaBeans

  17. Handling Events in JavaBeans (Contd.) • Creating Event Handler • Custom event handlers should define the following methods: • addXXListener(): Registers listeners of a JavaBean event. • fireXX(): Notifies the listeners of the occurrence of a JavaBean event. • removeXXListener(): Removes a listener from the list of registered listeners of a JavaBean. JDBC and JavaBeans

  18. Handling Events in JavaBeans (Contd.) • The code snippet to define an event handler for the custom event NumberEvent is: • public class NumberBean extends JPanel implements ActionListener • { • public NumberBean() • {} • NumberEnteredListener mel; • public void addNumberListener(NumberEnteredListener mel) • { • this.mel = mel; • } JDBC and JavaBeans

  19. Handling Events in JavaBeans (Contd.) • /* The following method is used to notify all listeners about the completion of data entry */ • NumberEvent mec; • public void fireNumberEvent(NumberEvent mec) • { • mel.arithmeticPerformed(mec); • } • public void actionPerformed(ActionEvent ae) • { • .. • .. • } • } JDBC and JavaBeans

  20. Handling Events in JavaBeans (Contd.) • Using Custom Event in a Target Application • A target application, which uses the JavaBean that fires the custom event, must first register itself as a listener of the event. • A target application must define the code to specify what has to be done when the custom event is fired. • For example, a sample target application that uses the NumberEvent custom event accepts two numbers as input from an end user, fires the custom event, and displays the result of adding two numbers. JDBC and JavaBeans

  21. Demonstration-Creating User-Defined JavaBean • Problem Statement • A JavaBean has to be created to accept the login information from a customer. The JavaBean should accept the login name and the password. The login information will be used by Earnest Bank for several purposes, such as to store the login details in the database of Customer Call Center and ATM Centers of the bank. You need to create the login JavaBean that does the following: JDBC and JavaBeans

  22. Demonstration-Creating User-Defined JavaBean (Contd.) • Provides a user-interface to accept the login name and password. JDBC and JavaBeans

  23. Demonstration-Creating User-Defined JavaBean (Contd.) • Creates an event object that stores the login information and fires an event every time a user logs on. • You should verify the JavaBean functionality by creating a simple target application that checks that the name and password are not same. JDBC and JavaBeans

  24. Demonstration-Creating User-Defined JavaBean (Contd.) • Solution • To create the login JavaBean that uses the custom event to check that the login name and password are not same, the following tasks need to be performed: • Creating an event class • Creating an event listener • Creating an event handler • Using the custom event in a target Java application • Verifying the execution of custom event JDBC and JavaBeans

  25. Summary • In this lesson, you learned: • The properties of a JavaBean are the private data members of the JavaBean class. • Properties are used to define the behavior of JavaBean components. • The properties of a JavaBean that can have only one value at a time are called simple properties. • The boolean properties of a JavaBean can have one of the two values, true or false. • The JavaBean properties that are indexed under a single name are called indexed properties. The index in the property array of an indexed property is an integer value. • The bound properties of a JavaBean are registered with an external event listener. JDBC and JavaBeans

  26. Summary (Contd.) • The constrained properties of a JavaBean are also registered with an external listener. The external event listener for the constrained property can revert the changes in the value of JavaBean property, if the change is invalid. • The event delegation model of Java is used to handle custom events. • The event source generates an event. • The event listener interfaces are notified, when an event is generated. • The event classes define the various events that can be generated by the event source. • The steps to create a custom event and implement it in a target application are: • Create an event class. • Create an event listener interface. • Create an event handler JavaBean to process the event. • Create a target application to implement the custom event. ` JDBC and JavaBeans

More Related