// strHelpsetPathRelativeShort = "/" + strHelpsetPathRelativeShort;
// NOT WORKING!
// ---
GfrHelpSet hst = null;
try
{
ClassLoader clr = this.getClass().getClassLoader();
java.net.URL url = javax.help.HelpSet.findHelpSet(clr, strHelpsetPathRelativeShort);
if (url == null)
{
GfrAppSpcOgcAbs._LOGGER_.warning("url == null, strHelpsetPathRelativeShort=" + strHelpsetPathRelativeShort);
return null;
}
hst = new GfrHelpSet(clr, url);
if (hst == null)
{
GfrAppSpcOgcAbs._LOGGER_.severe("nil hst, strHelpsetPathRelativeShort=" + strHelpsetPathRelativeShort);
GfrAppSpcOgcAbs._LOGGER_.severe("... nil hst, url.toString()=" + url.toString());