super( DottedNameRegistry.class ); mRegistry = new DottedNameRegistry1To1Impl();
mRegistry.add( dottedName, objectName );
final Set tempNames = mRegistry.allDottedNameStrings(); Set names = null; if ( tempNames instanceof java.io.Serializable ) { names = tempNames; } else { names = new java.util.HashSet(); names.addAll( tempNames ); } return( names );
return( mRegistry.allObjectNames() );
return( mRegistry.dottedNameToObjectName( dottedName ) );
return( mRegistry.objectNameToDottedName( objectName ) );
mRegistry.remove( dottedName );
mRegistry.remove( objectName );