I'm going rephrase my previous question. We have a website on our server that was developed by our parent company (across the globe in Taiwan) using NetBeans. Nothing on the server is from NetBeans, no references, build files, project files, or anything. Just the necessary files the server needs to run the website. I've been given the responsibility of maintaining this website because they no longer support us. So, I copied/pasted the entire website, from the domain folder, over to my local computer and imported it into my NetBeans. As I go into the source code, I get a whole bunch of errors. Basically 95% of the import
statements are erroring out because it can't find the specified "symbol", or the package simply "doesn't exist".
I've tried working with the Project properties -> Libraries and adding libraries and/or JAR/Folder that I believe the source code is trying to reference..but it doesn't seem to do the trick, or I'm not doing it right. I just need to get these darn references working.. here is a small list of the import statements from the file in question (RecordAdd.java):
package asp.easp;
import asp.SessionBean1;
import com.icesoft.faces.component.ext.HtmlCommandButton;
import com.icesoft.faces.component.ext.HtmlCommandLink;
import com.icesoft.faces.component.ext.HtmlDataTable;
import com.icesoft.faces.component.ext.HtmlInputText;
import com.icesoft.faces.component.ext.HtmlInputTextarea;
import com.icesoft.faces.component.ext.HtmlMessage;
import com.icesoft.faces.component.ext.HtmlOutputText;
import com.icesoft.faces.component.ext.HtmlPanelGrid;
import com.icesoft.faces.component.ext.HtmlSelectOneMenu;
import com.icesoft.faces.component.jsfcl.data.DefaultSelectedData;
import com.icesoft.faces.component.jsfcl.data.DefaultSelectionItems;
import com.icesoft.faces.component.jsfcl.data.DefaultTableDataModel;
import com.icesoft.faces.component.jsfcl.data.SelectInputDateBean;
import com.icesoft.faces.component.panelpopup.PanelPopup;
import com.icesoft.faces.component.paneltabset.PanelTab;
import com.icesoft.faces.component.paneltabset.PanelTabSet;
import com.icesoft.faces.component.selectinputdate.SelectInputDate;
import com.icesoft.faces.component.selectinputtext.SelectInputText;
import com.sun.rave.faces.data.DefaultSelectItemsArray;
import com.sun.rave.web.ui.appbase.AbstractPageBean;
import java.util.ArrayList;
import java.util.Collection;
import javax.faces.FacesException;
import javax.faces.convert.DateTimeConverter;
import javax.faces.model.ListDataModel;
import util.RecordDetailInfoBean;
import asp.ApplicationBean1;
import asp.RequestBean1;
import com.coretronic.util.DateConvert;
import com.icesoft.faces.component.ext.HtmlSelectOneRadio;
import com.icesoft.faces.component.jsfcl.data.CachedRowSetWrapperDataModel;
import com.icesoft.faces.context.effects.Appear;
import com.icesoft.faces.context.effects.Effect;
import com.sun.data.provider.impl.CachedRowSetDataProvider;
import com.sun.jsfcl.data.CachedRowSetDataModel;
import com.sun.sql.rowset.CachedRowSetXImpl;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.util.Calendar;
You can see a picture of the file hierarchy of the website in the link above to my previous question. Can somebody please help me get these references working in my project? I have very little experience in JavaEE, so please assume I don't know anything, because I don't. The stuff I do know that I've mentioned is what I've come to find after working on this for a week now. I can provide any additional information you need about the project. Thank you very much in advance.