Skip to Content
0
Jan 08, 2008 at 10:44 AM

Error This compilation unit indirectly references the missing type com.sapp

39 Views

Hi I am creating the one class related to the wizard creating.

The code which i have written is:

import com.sapportals.admin.wizardframework.api.IWizardContext;

import com.sapportals.admin.wizardframework.components.FlowContainer;

import com.sapportals.admin.wizardframework.templates.AbstractWizardPane;

public class TicketInfo extends AbstractWizardPane {

* protected static String TICKET_INFO_PANE_KEY;*

* /* (non-Javadoc)*

* * @see com.sapportals.admin.wizardframework.templates.AbstractWizardPane#setupPane(com.sapportals.admin.wizardframework.api.IWizardContext, com.sapportals.admin.wizardframework.components.FlowContainer)*

* /

* protected void setupPane(IWizardContext arg0, FlowContainer arg1) {*

* // TODO Auto-generated method stub*

* TextInputComponent firstNameComp = new TextInputComponent("first name", "");*

* firstNameComp.setValueTargetPath("info.firstName");*

* pane.addComponent("first_name", firstNameComp, false);*

* }*

* /* (non-Javadoc)*

* * @see com.sapportals.admin.wizardframework.api.IWizardComponent#getTitle(com.sapportals.admin.wizardframework.api.IWizardContext)*

* /

* public String getTitle(IWizardContext arg0) {*

* // TODO Auto-generated method stub*

* return null;*

* }*

In the above class if i add the " extends AbstractWizardPane"

then it is giving the following error in the Taskwindow of the NWDS. But that class should extends that class

This compilation unit indirectly references the missing type com.sapportals.htmlb.Component (typically some required class file is referencing a type outside the classpath)

kindly tell me how to rectifiy this error.

Regards

Vijay