YOUR FEEDBACK
udaykiran wrote: Really Excellent Information. But i have some doubts. initially i have some aver...


2008 East
DIAMOND SPONSOR:
Data Direct
Frontiers in Data Access: The Coming Wave in Data Services
PLATINUM SPONSORS:
Red Hat
The Opening of Virtualization
Intel
Virtualization – Path to Predictive Enterprise
Green Hills
IT Security in a Hostile World
JBoss / freedom oss
Practical SOA Approach
GOLD SPONSORS:
Software AG
The Art & Science of SOA: How Governance Enables Adoption
PlateSpin
Effective Planning for Virtual Infrastructure Growth
Fujitsu
Automated Business Process Discovery & Virtualization Service
Ceedo
Workspace Virtualization
Click For 2007 West
Event Webcasts

2008 East
PLATINUM SPONSORS:
Appcelerator
Think Fast: Accelerate AJAX Development with Appcelerator
GOLD SPONSORS:
DreamFace Interactive
The Ultimate Framework for Creating Personalized Web 2.0 Mashups
ICEsoft
AJAX and Social Computing for the Enterprise
Kaazing
Enterprise Comet: Real–Time, Real–Time, or Real–Time Web 2.0?
Nexaweb
Now Playing: Desktop Apps in the Browser!
Sun
jMaki as an AJAX Mashup Framework
POWER PANELS:
The Business Value
of RIAs
What Lies Beyond AJAX?
KEYNOTES:
Douglas Crockford
Can We Fix the Web?
Anthony Franco
2008: The Year of the RIA
Click For 2007 Event Webcasts
SYS-CON.TV
TOP THREE LINKS YOU MUST CLICK ON


Components, and Creating a Custom Property Editor
Components, and Creating a Custom Property Editor

This column discusses property editors and how to implement one for Java -specifically, how to make one work for our CodeDocument class. When last we talked, we saw how to build a CodeDocument class, but it wasn't something we could work with in a visual designer like JBuilder, say, or Visual Cafe. In this column we'll build a special case of the JTextArea component and add some specialty properties and property editors to support the CodeDocument class we worked on before. The code listings at the end of the article are excerpted from the complete code, which you can download from www.JavaDevelopersJournal.com.

Property Editors and How They Work
Basically, property editors allow you to edit a property. Wow! What a concept! Except that to make this work the IDE has to know what the property is. Luckily, since we're talking about Java, we have a neat little tool called Reflection that we can use to ask any given object, "What are you?" and get back a response like, "I'm a java.lang.String class object." Great, now we know what we're dealing with...but wait a minute...hold the bus. How do we know how to edit the object? "It's a string. How hard can it be?" you say. Well, if everything were a string, we'd have no problems, but things are a little more complicated than that. Granted, a string is easy to edit, but what about a color object, or a collection of items (like a vector)? Since a property can be any kind of object, we need to have a uniform way of explaining to the IDE how to edit that object, and, if necessary, supply a custom UI with which to edit the property. So the property editor interface provides just the thing we need, with methods to get and set the object in question, as well as methods for telling whether the property editor supports a custom UI editor.

Property editors by themselves don't do much good. For the IDE to "know" about them, the component whose properties we're interested in must publish BeanInfo.

The BeanInfo interface describes the component to the IDE with information such as the icon to display as a visual representation of the component and - you guessed it -a list of property descriptors. What do the property descriptors do? They describe properties! Each property descriptor contains information such as the name of the get and set methods, the name of the property, the class the property belongs to and, finally (and this is optional), the PropertyEditor class itself. Thus, when the user asks to edit a property, the IDE first retrieves the component's BeanInfo class and then the property descriptor for the desired property. If the property descriptor supports a custom editor, the custom editor is then loaded and the custom editor component is loaded and displayed for the user to work with (this usually takes place in a dialog of some sort -at least this is how JBuilder handles things).

Adding Our Own Property Editor for the CodeDocument
Let's take this knowledge and do something practical with it. Let's add a new component based on JTextPane, which automatically uses a Document model based on our CodeDocument class. We'll start with the code shown in Listing 1.

All right, that was pretty painless. What we're doing is calling the super class in the constructor and setting the document to a new instance of the CodeDocument class we developed previously. We're going to add a single property -call keywords -that will allow the developer to modify the CodeDocument keywords attribute. Doing this changes the set of keywords the CodeDocument looks for in its syntax highlighting process. Let's look at another example demonstrating this, in Listing 2.

So now we've added two methods that allow us to get and set keywords. We overloaded the setKeywords method to allow for either a vector of keywords or an array of strings (the array of string method simply converts the array to a vector and calls the vector version of the method).

This will become more important when we add our property editor later on. Notice that we didn't add an attribute of type Vector to the code -we're simply mapping any calls to get or set keywords directly back to the CodeDocument class. Now we have our component, and if we wanted to we could leave it at that. However, we wouldn't have a property editor working yet, thus defeating the point of this article!

The next thing we need to add is the BeanInfo class. BeanInfo is actually an interface that you need to implement in some other class to make things work. So let's create our BeanInfo implementation class, as seen in Listing 3.

So far this is pretty basic. As mentioned before, the BeanInfo methods allow an IDE to determine all sorts of information about the component and the properties it supports. In our implementation you'll notice we extend SimpleBeanInfo, a class that has all the methods of the BeanInfo stubbed out. Since there are a few other methods that aren't neccessary for us at this point, extending SimpleBeanInfo makes our life a little easier, allowing us to focus on just the parts we need. As mentioned earlier, getPropertyDescriptors() is the method called by the IDE to get all the property info. We'll return an array of property descriptors only for the properties we're interested in exposing to the IDE for user manipulation. In our case there will be only one element, for the keywords property. The getIcon() method will return either null or an image containing a 16x16 icon (black and white or color) that represents the component or a 32x32 icon (also black and white or color). The kind of icon is determined by the iconKind parameter passed into the method (the choices are ICON_COLOR_16x16, ICON_COLOR_32x32, ICON_MONO_16x16, and ICON_MONO_32x32). The getAdditionalBeanInfo() is supposed to call the super class and request more bean info from that class.

For now, let's look at the getPropertyDescriptors() method. In our implementation we need to supply only one element in the array. We don't need to worry about any of the super class properties. If we had another property that was a string -say, DocumentName -we wouldn't have to worry about it either. Why? Because objects like string and integer almost always have default property editors registered in the IDE and there's usually no need to register something else. But let's say that, instead of DocumentName, our property was called FileName, and we wanted to bring up some kind of file open dialog when the user tried to edit it. Now we'd want to supply a custom property editor for the string, causing a file open dialog to pop up when the property is edited. Back to our implementation. To set up the element properly, let's look at Listing 4.

The first thing we do is create a new instance of a PropertyDescriptor class by passing in the name of the property, the class it belongs to (in our case CodeTextPane) and the names of the get and set methods. The setDisplayName() method is used to define the text that will be displayed for your property, and the setShortDescription is used to populate tool tips with a short description of your property. The setPropertyEditorClass() method is used to set the class type for your property editor. It's important to set this up correctly; otherwise the property editor won't be picked up by the IDE. The class KeywordsEditor is the one we're going to create next, in case you're wondering where it came from. After this is done we'll create a new array of PropertyDescriptor objects (the propertyDescriptors variable) and put the new instance we created previously into the array. Then we just return the array.

The only other method we'll bother implementing in our implementation of BeanInfo is the getAdditionalBeanInfo() method. This is given in Listing 5.

By providing additional BeanInfo, we're giving the IDE more information about our object -specifically, about the object's super class. Similar to the PropertyDescriptor, we're returning an array of objects, each a reference to BeanInfo. In our implementation we call the Introspector's getBeanInfo() method to get the super class's bean info.

So far we've gone through all the steps neccessary to create a simple component (CodeTextPane) and supply an implementation of BeanInfo that properly exposes our property (keywords) and its custom editor class (KeywordsEditor). Now it's time to look at the property editor class directly. The class will actually have two parts: the first is the property editor class itself, KeywordsEditor (Listing 6a); the second is the custom editor component, KeywordsEditorComponent (Listing 6b).

The property editor interface is fairly easy to implement, especially when we extend from the PropertyEditorSupport class. Like the SimpleBeanInfo, it provides either stubs or simple implementations of the methods so we can concentrate on the few that are important to us. Since we want to support a custom editor component, we return true from the supportsCustomEditor() method that's called by the IDE. We also return an instance of our editor component in the getCustomEditor() method. Since getCustomEditor() returns a component, we can base our editor component on practically anything. Usually the component gets nested into some other container, like a dialog (this is the case with JBuilder), so basing it on JPanel is usually a good idea. The getJavaInitializationString() method returns a string that represents the Java code required to set the given property from the code editor. Whenever you change the property via your custom editor, this string will need to change as well. An example would be a property that is a font object. In your IDE's code editor, you might see something like this:

public void myInitMethod(){
//more code
this.setFont(new Font("SansSerif", 1, 12));
//more code...
}

The line "new Font("SansSerif", 1, 12)" would be provided to the IDE by whatever property editor is registered for the font property of the object. This string would be the return of the property editor's getJavaInitializationString() method. In our case the string might look like the following:

public void myInitMethod(){
//more code
codeTextPaneObj.setKeywords(new String[]{"foo","bar","blah",});
//more code...
}

Since there's no convenient way to represent a vector like this, we can use our second version of the setKeywords() method to pass in the new set of keywords. The implementation code for the getJavaInitializationString() method would look like Listing 7.

The getValue() method returns the current value of the property represented by the property editor (it's already implemented for us by the PropertyEditorSupport class). We then go through all the elements in the vector and assemble them into a string, returning this string when we're finished.

With this done we have our PropertyEditor class ready to go. Now we can take a look at designing the custom editor component. For starters let's take a look again at Listing 6b. The class is simple. It extends Panel (or JPanel if you want to have a Swing look) and has a constructor that takes one argument -a property editor object that's set to a private variable.

As it stands, the component will do absolutely nothing, so let's add a listbox to view all our keywords, an edit box to type in new keywords, two labels -one for the list and one for the edit box -and, finally, two buttons -one to add the information in the edit box and one to delete selected items from the keywords list. Take a look at Listing 8.

The keywords variable is a DefaultListModel, Swing's default implementation of a suitable list model for use in JList controls. So when we add items to the list, we don't bother calling the control methods; instead, we actually manipulate the keywords object. The JList is constructed by passing in the keywords object as its model, so everything is hooked up for us. The next thing we need to add is a private initialization method to set all the widget properties and hook up event listeners, as well as to configure a GridBagLayout to position all the controls properly. We'll call this method initEditor(), and instead of showing all the code here (you can see it on the JDJ Web site), I'm just going to present the sections relevant to the article. The main thing we need to catch are changes to the keywords list. Each time it changes, we need to call the property editor's setValue() method to inform it of a change, which in turn notifies any registered listeners that the property has changed. That way, when our editor component is dismissed, the property is in a valid state and the getJavaInitializationString() will return correct data. To accomplish this we register a listener with the keywords object as seen in Listing 9 (this takes place in the initEditor() method).

This ensures that any change to the keywords object will call the keywords_changed() method (a private method of the editor component), which properly updates the property editor. According to the Java documentation, you shouldn't actually modify the property editor value directly; instead, you should just send a new instance. To do that we end up with the code in Listing 10.

The method simply makes a copy of the elements in the keywords list and places them in a new instance of a vector that can then be sent to the property editor via the setValue() method.

One other thing of interest in the initEditor() method is the setting of the listbox to the current value of the property editor. This is accomplished in Listing 11.

The keywords object is cleared using the removeAll() method, and the property editor's value is retrieved through the getValue() method and then enumerated; the new elements are then added to the keywords list.

That's It, Folks!
We're done!

  • We've covered creating a new text component with support for our previously created CodeDocument class.
  • We've created a BeanInfo class to ensure that IDEs such as JBuilder are aware of the properties we're exposing and any custom features, like editors, we support.
  • We've created a property editor class to support our new property.
  • We've created a custom editor component that will allow us to edit that property in a visual way.
Whew! I hope this was helpful -let me know how it works for you by e-mailing me at ddiego@diegoware.com.
About Jim Crafton
Jim Crafton is part of the R&D team at Improv Technologies (www.improv-tech.com), helping to develop a new production-quality animation tool. In his spare time he develops advanced graphics software (you can see it at www.diegoware.com).

YOUR FEEDBACK
Preet wrote: interesting read... answers the what, but, and what ifs.. Thanks! I am newbie in this domain and this is exactly what I was looking for.
Mathan wrote: The main advantage of the POJOs are felt in distributed applications. Assume that your application is consuming services from 10 different applications. If one of them is down, then your application is effectively down. Instead, if you have the POJOs for all those apps bundled in your app, then your application can stand alone without any dependency
rogerv wrote: What Is POJO Programming? Oh - that's where you write 30% of a Java application in a declarative, XML-based domain specific language. For all practical purposes (and by very definition) the domain specific language will be unique to a given POJO container and hence will render the Java application essentially unportable.
Patrick Ellul wrote: I found this article very helpful with introducing me to the concepts behind POJO's and ORM's and frameworks such as Spring and Hibernate.
Justin Peck wrote: I liked this article so much, I wrote a Web application after having read it. Spring really does make programming Java-base Web apps fun again. Thanks for the article! [You can see the app now at http://javajuster.com]
Alain Ah Ming wrote: Is this simply replacing the underlying entity EJB with the value object? If a J2EE app were designed in a way that we had distinct segregation as follows: Session EJB --> BusinessLogic Helper class --ValueObj--> DAO interface --ValueObj--> DAO impl class --ValueObj--> Entity EJB would that would make it as good as what POJO prog is trying to achieve? From our test class, we can easily invoke our business logic helper class (which is a pure POJO) by injecting a test DAO impl class. That effectively leaves out any dependency to the underlying framework (EJB or spring).
harris reynolds wrote: Trackback Added: JDJ RIP; I receive several trade rags about technolgy. Most of them get stacked up in a pile by my desk that I eventually go through after they start cluttering the office. When going through the latest round of magazines recently I...
SYS-CON Italy News Desk wrote: The novel A Deepness in the Sky by Vernor Vinge is set in the distant future. The character Pham Nuwen is responsible for maintaining software whose components are thousands of years old. Today, however, it's difficult to imagine maintaining an Enterprise Java application for more than a few years. More often than not, the application is tightly coupled to infrastructure frameworks that evolve rapidly in ways that don't preserve backwards compatibility. Consequently, upgrading to a new and improved framework can be challenging and risky.
LATEST JAVA STORIES & POSTS
What could be a problem with logging in SOA in the presence of such wonderful tools like log4j, Java’s logging library and similar? Why might we need something special for SOA and why aren’t existing techniques enough? The answer is simple and complex simultaneously – in SO...
Aonix released PERC Ultra 5.1 cross development and target support on Sysgo's PikeOS 2.2 real-time operating system. PERC Ultra support of the PikeOS POSIX PSE52 profile provides a solution for the increasing need for portability across multiple operating systems as industries su...
What's the key to team and individual developer productivity in maintaining and extending a large application? Let’s start by making the following assertions: A developer's knowledge of an application code base is likely the single biggest factor of individual productivity. Cor...
An applet, a Java program that runs in a browser, often has to access the client resources. However, the security manager prevents an applet from accessing client resources. To access client resources, the applet has to have the proper permission. With this permission the applet ...
Three-letter acronyms (TLAs) are hardly new in Information Technology: EAI, ESB, SOA, BPM, BAM, ETL, MDM; the list goes on and on. This article is about yet another three-letter acronym, EDA, which stands for Event-Driven Architecture. EDA is not a brand new technology, but rathe...
Furthering its dedication to providing Java developers productivity with choice, Oracle announced the Oracle Enterprise Pack for Eclipse, a new component of Oracle Fusion Middleware. This release marks the first free Eclipse 3.4 environment to support Oracle WebLogic Server 10g R...
SUBSCRIBE TO THE WORLD'S MOST POWERFUL NEWSLETTERS
SUBSCRIBE TO OUR RSS FEEDS & GET YOUR SYS-CON NEWS LIVE!
Click to Add our RSS Feeds to the Service of Your Choice:
Google Reader or Homepage Add to My Yahoo! Subscribe with Bloglines Subscribe in NewsGator Online
myFeedster Add to My AOL Subscribe in Rojo Add 'Hugg' to Newsburst from CNET News.com Kinja Digest View Additional SYS-CON Feeds
Publish Your Article! Please send it to editorial(at)sys-con.com!

Advertise on this site! Contact advertising(at)sys-con.com! 201 802-3021


SYS-CON FEATURED WHITEPAPERS

SPONSORED BY INFRAGISTICS
There are many forces that influence technological evolution. After a decade of building enterprise ...
2008 is going to be an important year for Rich Internet Applications. Most organizations are deliver...
The OpenAjax Alliance is developing an Ajax industry wishlist for future browsers, using a dedicated...
In every field of design one of the first things students do is learn from the work of others. They ...
Infragistics announced the availability of two Community Technology Preview (CTP) User Interface (UI...
The YUI development team has released version 2.5.2; you can download the new release from SourceFor...
ADS BY GOOGLE
BREAKING JAVA NEWS
Ricoh Americas Corporation, a leading provider of digital office equipment, today announced the avai...