Articles

Constructing Builder Set Methods in Java

Posted by gcope on November, 4, 2011

There are occasions in programming when one must build a very complex class, whose construction is dependent upon a great number of parameters - parameters which vary in both value and number. ...

Creating Editable Google Maps

Posted by gcope on October, 22, 2011

Several months ago I was tasked at writing a framework to allow multiple users to add and edit markers to a google maps user interface. It all started after a member at J2EE: Changing Objects with Remote Interfaces

Posted by gcope on November, 20, 2010

It was a bug whose solution should have been completely obvious to me. The scenario: a servlet accessed a local interface of a session bean to perform a simple process. To incorporate multi-client ...

Saving Objects in Java

Posted by gcope on November, 11, 2010

Saving object in java can be accomplished in a number of ways, the most prominent of which is to serialize the object - saving it to a file and reading the object using an ObjectOutputStream...

The Importance of Access Modifiers

Posted by gcope on November, 4, 2010

When I first started learning programming, I found few reasonable demonstrations of the uses and advantages of access modifiers (the public, private, protected, and package private modifiers in jav...


© 2008-2012 Greg Cope