Error compiling with javax HelpSet - cannot resolve symbol
Has anyone else seen this error?
I get the following error during compilation:
swing/jhelp/SimpleHelpBroker.java:12: cannot resolve symbol
[javac] symbol : class Presentation
[javac] location: class javax.help.HelpSet
[javac] import javax.help.HelpSet.Presentation;
[javac] ^
[javac] 1 error
This is the code segment, and the prior import statements appear to compile w/o the error:
import javax.swing.*;
import javax.help.*;
import javax.help.event.HelpModelEvent;
import java.util.Enumeration;
import java.net.MalformedURLException;
import java.net.URL;
import java.awt.*;
import java.awt.event.*;
import javax.help.CSH;
import javax.help.HelpSet.Presentation;
import javax.help.Map.ID;
import javax.help.BadIDException;
import javax.help.HelpBroker;
import javax.help.HelpSet;
I checked $PATH and it seems to be in order. Has anyone else found this error or know what could cause it?