/**
 * Static method to view the "Folder" name of an object. This
 * works even if the object has defined toString().
 *
 * Walker White
 * February 9, 2012
 */
public class FolderName {
 
    /** Yields: the hidden "Folder name" of this object */ 
    public static String getName(Object o) {
        return "@"+Integer.toHexString(System.identityHashCode(o));
    } 
    
}