/** * Returns the fully qualified file name under which the link is saved on disk. <b>Note: </b> this * method returns valid results only if the instance was created from a file on disk or after a * successful save operation. * * @return the fully qualified file name for the shell link */ public String getFileName() { String aFilename = shortcut.getFileName(); Debug.log(CLASS + myClass + ".getFileName() '" + aFilename + "'"); return (aFilename); }
/** * Returns the fully qualified file name under which the link is saved on disk. <b>Note: </b> this * method returns valid results only if the instance was created from a file on disk or after a * successful save operation. * * @return the fully qualified file name for the shell link */ @Override public String getFileName() { String aFilename = shortcut.getFileName(); return aFilename; }