Supporters providing extensible classes without recoding for...

Data processing: database and file management or data structures – Database design – Data structure types

Reexamination Certificate

Rate now

  [ 0.00 ] – not rated yet Voters 0   Comments 0

Details

C104S004000, C345S215000, C345S215000, C709S241000

Reexamination Certificate

active

06208994

ABSTRACT:

The present invention relates generally to managing collections of objects, and particularly to extending the object classes supported by a class that works with a collection of objects.
A portion of the disclosure of this patent document contains materials to which a claim of copyright protection is made. The copyright owner has no objection to the facsimile reproduction by anyone of the patent document or the patent disclosure, but reserves all other rights whatsoever.
BACKGROUND OF THE INVENTION
In the object-oriented paradigm, all tasks are performed by objects, which include attributes that hold information and methods that accomplish tasks and interact with other objects. Each object is an instance of a class that defines the object's attributes and methods. Some classes (hereinafter, “containers”), need to interact with many different types of classes (hereinafter, “contained”). For example, in an application that has a graphical user interface, a object that is an instance of a particular container class (e.g., a “DoSomething” class) might need to interact with the individual objects that correspond to the GUI components, each of which could be an instance of a different GUI component class. Conventionally, there are three ways a container class can refer to the contained classes.
In a first way, the container class includes specialized methods that perform specific operations on specific classes. Each of these methods has a unique name. For example, assuming that the DoSomething class can be used to add text field, list and vector GUI components to a GUI, the DoSomething class, written in the Java™ programming language (Java and all Java-based trademarks and logos are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other countries), might look as shown in Table 1:
TABLE 1
public class DoSomething {
public DoSomething (){
// constructor code for the DoSomething class
}
public void includeTextField (TextField tf) {
// code that adds a text field component
}
public void includeList (List I) {
// code that adds a list component
}
public void includeVector (Vector v) {
// code that adds a vector component
}
}
Syntax of the Java™ programming language is well-known; however, because examples in the Java™ programming language are used throughout this document, a few of the statements above are now described. The first statement, “public DoSomething( )” declares a constructor method that is invoked by a programmer whenever they wish to create another object instance of the DoSomething object class. All Java™ programming language classes have constructors, whose name is the same as the associated class. The actual constructor method code is not shown, but is referred to in the comment, “// constructor code for the DoSomething class”. The second statement, “include TextField(TextField tf)” declares a specialized method that is invoked whenever a programmer wishes to add a TextField GUI component to an application GUI. Subsequent statements are declarations for similar methods for adding the other types of GUI components. This form of container is not commonly used as it results in a very large API (Application Programming Interface) due to the proliferation of public methods for manipulating different types of GUI components. For more information on the Java™ programming language syntax, refer to Patrick Niemeyer & Joshua Peck, “Exploring Java,”(2nd ed. 1997), which is entirely incorporated herein by reference.
In a second way, referred to as overloading, the container class provides unique methods to handle the contained classes, but assigns the same name to methods that accomplish the same goal. For example, using overloading, the DoSomething class, written in the Java™ programming language, might look as shown in Table 2:
TABLE 2
public class DoSomething {
public DoSomething (){
// constructor code for the DoSomething class
}
public void include (TextField tf) {
// code that adds a text field component
}
public void include (List I) {
// code that adds a list component
}
public void include (Vector v) {
// code that adds a vector component
}
}
Given such a container class a programmer can add any type of supported GUI component by simply issuing a call to DoSomething.include (ob), where ob is an object of a supported class. The Java™ programming language compiler then automatically uses whichever include method corresponds to the class of ob. Overloading is the most commonly used technique for handling contained classes because it reduces the size of the API without needing the if-then-else clauses employed by the third way, which is now described.
In the third way, the container class provides a general method that can handle objects of any of the supported contained classes. Such general methods employ if-then-else clauses to determine which code to apply, based on the class of the object passed to the method. For example, using general methods, the DoSomething class, written in the Java™ programming language, might look as shown in Table 3:
TABLE 3
public class DoSomething {
public DoSomething (){
// constructor code for the DoSomething class
}
public void include (Object ob) {
if (ob instanceof TextField) {
// code that adds a text field component
} else if (ob instanceof List) {
// code that adds a list component
} else if (ob instanceof Vector) {
// code that adds a vector component
}
}
}
With a container class implemented in this way a programmer can add any type of supported GUI component by simply issuing a call to DoSomething.include (arg), where arg is an object instance of a supported class. In contrast to the second way, the if-then-else clause selects the correct code based on the class of the object arg. Using an if-then-else clause allows the API to be simplified but, due to the additional statements, adds to the size of the container class and instances thereof. For this reason, this technique is not as widely used as the overloading method.
Problems with each of these methods arise when the container class needs to support another type of contained object (e.g., a RadioButton component). When this need arises, the container object needs to be completely recoded to include the new class. This is because each container includes all of the code it needs to handle the contained classes. For example, in the first case, a new includeRadioButton (RadioButton rb) method would need to be added to the container class, in the second case a new include (RadioButton rb) method would need to be added, and in the third case a new else if (ob instanceof RadioButton) statement and associated code would need to be added.
The requirement of adding new code to existing classes results in extended product release dates and testing to ensure that the new classes are operable (even if support for only one new class is added to an existing container). Therefore, there is a need for technology that enables support for new classes to be added to a container class that does not require modification or recoding of the container class.
SUMMARY OF THE INVENTION
In summary, a system and method for adding support for new classes to a container class implemented in accordance with the present invention does not require the container class to be recoded. Additionally, a system and method for building container classes implemented in accordance with the present invention does not require a programmer to explicitly code methods related to the contained classes.
In particular, an embodiment of the present invention includes a set of classes, called Supporters, that provide support for contained classes. Related Supporters can be packaged as a library that can be shipped with programming environments, updated APIs or device drivers. For example, a Java™ programming environment might include a library of GUI Supporters, each of which includes methods that support a respective type of Java™ GUI c

LandOfFree

Say what you really think

Search LandOfFree.com for the USA inventors and patents. Rate them and share your experience with other people.

Rating

Supporters providing extensible classes without recoding for... does not yet have a rating. At this time, there are no reviews or comments for this patent.

If you have personal experience with Supporters providing extensible classes without recoding for..., we encourage you to share that experience with our LandOfFree.com community. Your opinion is very important and Supporters providing extensible classes without recoding for... will most certainly appreciate the feedback.

Rate now

     

Profile ID: LFUS-PAI-O-2444848

  Search
All data on this website is collected from public sources. Our data reflects the most accurate information available at the time of publication.