The import javax.ejb cannot be resolved
Hi ,
I am new to this forum.There are some libraries missingin my code and I am unable to trace them. The code is .......
package era.budget;
import javax.ejb.*;
import era.budget.BudgetVO;
public class BudgetItemVO implements java.io.Serializable
{
private Integer itemId;
private BudgetVO budget;
private int type;
private String itemDetails;
private int amount;
// -------------- BEGIN GET/SET METHODS --------------
public BudgetItemVO(Integer id)
{
this.itemId = id;
}
public BudgetItemVO()
{
}
public Integer getItemId()
{
return itemId;
}
public BudgetVO getBudget()
{
return budget;
}
public void setBudget(BudgetVO budget)
{
this.budget=budget;
}
public int getType()
{
return type;
}
public void setType(int id)
{
this.type=id;
}
public String getItemDetails()
{
return this.itemDetails;
}
public void setItemDetails(String details)
{
this.itemDetails=details;
}
public int getAmount()
{
return this.amount;
}
public void setAmount(int amount)
{
this.amount=amount;
}
}
The errors that appear when compiled are as follows..........
Severity Description Resource In Folder Location Creation Time
2 The import javax.ejb cannot be resolved BudgetBean.java webera/JavaSource/era/budget line 6 January 30, 2008 11:32:26 AM
2 EntityBean cannot be resolved to a type BudgetBean.java webera/JavaSource/era/budget line 13 January 30, 2008 11:32:26 AM
2 EntityContext cannot be resolved to a type BudgetBean.java webera/JavaSource/era/budget line 16 January 30, 2008 11:32:26 AM
2 EntityContext cannot be resolved to a type BudgetBean.java webera/JavaSource/era/budget line 133 January 30, 2008 11:32:26 AM
2 ctx cannot be resolved or is not a field BudgetBean.java webera/JavaSource/era/budget line 135 January 30, 2008 11:32:26 AM
2 ctx cannot be resolved or is not a field BudgetBean.java webera/JavaSource/era/budget line 140 January 30, 2008 11:32:26 AM
2 CreateException cannot be resolved to a type BudgetBean.java webera/JavaSource/era/budget line 143 January 30, 2008 11:32:26 AM
2 RemoveException cannot be resolved to a type BudgetBean.java webera/JavaSource/era/budget line 164 January 30, 2008 11:32:26 AM
2 The import javax.ejb cannot be resolved BudgetItemBean.java webera/JavaSource/era/budget line 6 January 30, 2008 11:32:26 AM
2 EntityBean cannot be resolved to a type BudgetItemBean.java webera/JavaSource/era/budget line 9 January 30, 2008 11:32:26 AM
2 EntityContext cannot be resolved to a type BudgetItemBean.java webera/JavaSource/era/budget line 12 January 30, 2008 11:32:26 AM
2 EntityContext cannot be resolved to a type BudgetItemBean.java webera/JavaSource/era/budget line 41 January 30, 2008 11:32:26 AM
2 ctx cannot be resolved or is not a field BudgetItemBean.java webera/JavaSource/era/budget line 43 January 30, 2008 11:32:26 AM
2 ctx cannot be resolved or is not a field BudgetItemBean.java webera/JavaSource/era/budget line 48 January 30, 2008 11:32:26 AM
2 CreateException cannot be resolved to a type BudgetItemBean.java webera/JavaSource/era/budget line 52 January 30, 2008 11:32:26 AM
2 RemoveException cannot be resolved to a type BudgetItemBean.java webera/JavaSource/era/budget line 72 January 30, 2008 11:32:26 AM
2 The import javax.ejb cannot be resolved BudgetItemLocal.java webera/JavaSource/era/budget line 5 January 30, 2008 11:32:26 AM
2 EJBLocalObject cannot be resolved to a type BudgetItemLocal.java webera/JavaSource/era/budget line 8 January 30, 2008 11:32:26 AM
2 The import javax.ejb cannot be resolved BudgetItemLocalHome.java webera/JavaSource/era/budget line 6 January 30, 2008 11:32:26 AM
2 EJBLocalHome cannot be resolved to a type BudgetItemLocalHome.java webera/JavaSource/era/budget line 11 January 30, 2008 11:32:26 AM
2 CreateException cannot be resolved to a type BudgetItemLocalHome.java webera/JavaSource/era/budget line 15 January 30, 2008 11:32:26 AM
2 FinderException cannot be resolved to a type BudgetItemLocalHome.java webera/JavaSource/era/budget line 19 January 30, 2008 11:32:26 AM
2 FinderException cannot be resolved to a type BudgetItemLocalHome.java webera/JavaSource/era/budget line 20 January 30, 2008 11:32:26 AM
2 The import javax.ejb cannot be resolved BudgetItemVO.java webera/JavaSource/era/budget line 5 January 30, 2008 11:32:26 AM
2 The import javax.ejb cannot be resolved BudgetLocal.java webera/JavaSource/era/budget line 6 January 30, 2008 11:32:26 AM
2 EJBLocalObject cannot be resolved to a type BudgetLocal.java webera/JavaSource/era/budget line 14 January 30, 2008 11:32:26 AM
2 The import javax.ejb cannot be resolved BudgetLocalHome.java webera/JavaSource/era/budget line 6 January 30, 2008 11:32:26 AM
2 EJBLocalHome cannot be resolved to a type BudgetLocalHome.java webera/JavaSource/era/budget line 14 January 30, 2008 11:32:26 AM
2 CreateException cannot be resolved to a type BudgetLocalHome.java webera/JavaSource/era/budget line 18 January 30, 2008 11:32:26 AM
2 FinderException cannot be resolved to a type BudgetLocalHome.java webera/JavaSource/era/budget line 22 January 30, 2008 11:32:26 AM
2 FinderException cannot be resolved to a type BudgetLocalHome.java webera/JavaSource/era/budget line 23 January 30, 2008 11:32:26 AM
2 FinderException cannot be resolved to a type BudgetLocalHome.java webera/JavaSource/era/budget line 24 January 30, 2008 11:32:26 AM
2 FinderException cannot be resolved to a type BudgetLocalHome.java webera/JavaSource/era/budget line 25 January 30, 2008 11:32:26 AM
2 FinderException cannot be resolved to a type BudgetLocalHome.java webera/JavaSource/era/budget line 26 January 30, 2008 11:32:26 AM
2 FinderException cannot be resolved to a type BudgetLocalHome.java webera/JavaSource/era/budget line 27 January 30, 2008 11:32:26 AM
2 FinderException cannot be resolved to a type BudgetLocalHome.java webera/JavaSource/era/budget line 28 January 30, 2008 11:32:26 AM
2 The import javax.ejb cannot be resolved BudgetManagerBean.java webera/JavaSource/era/budget line 6 January 30, 2008 11:32:26 AM
2 SessionBean cannot be resolved to a type BudgetManagerBean.java webera/JavaSource/era/budget line 27 January 30, 2008 11:32:26 AM
2 SessionContext cannot be resolved to a type BudgetManagerBean.java webera/JavaSource/era/budget line 29 January 30, 2008 11:32:26 AM
2 FinderException cannot be resolved to a type BudgetManagerBean.java webera/JavaSource/era/budget line 1492 January 30, 2008 11:32:26 AM
2 The method remove() is undefined for the type BudgetItemLocal BudgetManagerBean.java webera/JavaSource/era/budget line 1523 January 30, 2008 11:32:26 AM
2 The method remove() is undefined for the type UBudgetItemLocal BudgetManagerBean.java webera/JavaSource/era/budget line 1561 January 30, 2008 11:32:26 AM
2 FinderException cannot be resolved to a type BudgetManagerBean.java webera/JavaSource/era/budget line 1807 January 30, 2008 11:32:26 AM
2 FinderException cannot be resolved to a type BudgetManagerBean.java webera/JavaSource/era/budget line 1836 January 30, 2008 11:32:26 AM
2 FinderException cannot be resolved to a type BudgetManagerBean.java webera/JavaSource/era/budget line 1873 January 30, 2008 11:32:26 AM
2 FinderException cannot be resolved to a type BudgetManagerBean.java webera/JavaSource/era/budget line 1894 January 30, 2008 11:32:26 AM
2 FinderException cannot be resolved to a type BudgetManagerBean.java webera/JavaSource/era/budget line 1930 January 30, 2008 11:32:26 AM
2 FinderException cannot be resolved to a type BudgetManagerBean.java webera/JavaSource/era/budget line 1960 January 30, 2008 11:32:26 AM
2 The method remove() is undefined for the type InvestigatorEffortsLocal BudgetManagerBean.java webera/JavaSource/era/budget line 3272 January 30, 2008 11:32:26 AM
2 The method remove() is undefined for the type UniversityEffortsLocal BudgetManagerBean.java webera/JavaSource/era/budget line 3299 January 30, 2008 11:32:26 AM
2 The method remove() is undefined for the type UInvestigatorEffortsLocal BudgetManagerBean.java webera/JavaSource/era/budget line 3429 January 30, 2008 11:32:26 AM
2 The method remove() is undefined for the type UUniversityEffortsLocal BudgetManagerBean.java webera/JavaSource/era/budget line 3456 January 30, 2008 11:32:26 AM
2 The method remove() is undefined for the type BudgetLocal BudgetManagerBean.java webera/JavaSource/era/budget line 3490 January 30, 2008 11:32:26 AM
2 The method remove() is undefined for the type UBudgetLocal BudgetManagerBean.java webera/JavaSource/era/budget line 3507 January 30, 2008 11:32:26 AM
2 SessionContext cannot be resolved to a type BudgetManagerBean.java webera/JavaSource/era/budget line 3827 January 30, 2008 11:32:26 AM
2 ctx cannot be resolved or is not a field BudgetManagerBean.java webera/JavaSource/era/budget line 3829 January 30, 2008 11:32:26 AM
2 The import javax.ejb cannot be resolved BudgetManagerLocal.java webera/JavaSource/era/budget line 6 January 30, 2008 11:32:26 AM
2 EJBLocalObject cannot be resolved to a type BudgetManagerLocal.java webera/JavaSource/era/budget line 27 January 30, 2008 11:32:26 AM
2 The import javax.ejb cannot be resolved BudgetManagerLocalHome.java webera/JavaSource/era/budget line 6 January 30, 2008 11:32:26 AM
2 EJBLocalHome cannot be resolved to a type BudgetManagerLocalHome.java webera/JavaSource/era/budget line 9 January 30, 2008 11:32:26 AM
2 CreateException cannot be resolved to a type BudgetManagerLocalHome.java webera/JavaSource/era/budget line 12 January 30, 2008 11:32:26 AM
2 The import javax.ejb cannot be resolved BudgetVO.java webera/JavaSource/era/budget line 6 January 30, 2008 11:32:26 AM
2 The import javax.ejb cannot be resolved FacultyBudgetBean.java webera/JavaSource/era/budget line 6 January 30, 2008 11:32:26 AM
2 EntityBean cannot be resolved to a type FacultyBudgetBean.java webera/JavaSource/era/budget line 13 January 30, 2008 11:32:26 AM
2 EntityContext cannot be resolved to a type FacultyBudgetBean.java webera/JavaSource/era/budget line 16 January 30, 2008 11:32:26 AM
2 EntityContext cannot be resolved to a type FacultyBudgetBean.java webera/JavaSource/era/budget line 127 January 30, 2008 11:32:26 AM
2 ctx cannot be resolved or is not a field FacultyBudgetBean.java webera/JavaSource/era/budget line 129 January 30, 2008 11:32:26 AM
2 ctx cannot be resolved or is not a field FacultyBudgetBean.java webera/JavaSource/era/budget line 134 January 30, 2008 11:32:26 AM
2 CreateException cannot be resolved to a type FacultyBudgetBean.java webera/JavaSource/era/budget line 137 January 30, 2008 11:32:26 AM
2 CreateException cannot be resolved to a type FacultyBudgetBean.java webera/JavaSource/era/budget line 147 January 30, 2008 11:32:26 AM
2 RemoveException cannot be resolved to a type FacultyBudgetBean.java webera/JavaSource/era/budget line 172 January 30, 2008 11:32:26 AM
2 The import javax.ejb cannot be resolved FacultyBudgetItemBean.java webera/JavaSource/era/budget line 6 January 30, 2008 11:32:26 AM
2 EntityBean cannot be resolved to a type FacultyBudgetItemBean.java webera/JavaSource/era/budget line 9 January 30, 2008 11:32:26 AM
2 EntityContext cannot be resolved to a type FacultyBudgetItemBean.java webera/JavaSource/era/budget line 12 January 30, 2008 11:32:26 AM
2 EntityContext cannot be resolved to a type FacultyBudgetItemBean.java webera/JavaSource/era/budget line 41 January 30, 2008 11:32:26 AM
2 ctx cannot be resolved or is not a field FacultyBudgetItemBean.java webera/JavaSource/era/budget line 43 January 30, 2008 11:32:26 AM
2 ctx cannot be resolved or is not a field FacultyBudgetItemBean.java webera/JavaSource/era/budget line 48 January 30, 2008 11:32:26 AM
2 CreateException cannot be resolved to a type FacultyBudgetItemBean.java webera/JavaSource/era/budget line 52 January 30, 2008 11:32:26 AM
2 RemoveException cannot be resolved to a type FacultyBudgetItemBean.java webera/JavaSource/era/budget line 72 January 30, 2008 11:32:26 AM
2 The import javax.ejb cannot be resolved FacultyBudgetItemLocal.java webera/JavaSource/era/budget line 4 January 30, 2008 11:32:26 AM
2 EJBLocalObject cannot be resolved to a type FacultyBudgetItemLocal.java webera/JavaSource/era/budget line 7 January 30, 2008 11:32:26 AM
2 The import javax.ejb cannot be resolved FacultyBudgetItemLocalHome.java webera/JavaSource/era/budget line 6 January 30, 2008 11:32:26 AM
2 EJBLocalHome cannot be resolved to a type FacultyBudgetItemLocalHome.java webera/JavaSource/era/budget line 11 January 30, 2008 11:32:26 AM
2 CreateException cannot be resolved to a type FacultyBudgetItemLocalHome.java webera/JavaSource/era/budget line 15 January 30, 2008 11:32:26 AM
2 FinderException cannot be resolved to a type FacultyBudgetItemLocalHome.java webera/JavaSource/era/budget line 19 January 30, 2008 11:32:26 AM
2 The import javax.ejb cannot be resolved FacultyBudgetItemVO.java webera/JavaSource/era/budget line 5 January 30, 2008 11:32:26 AM
2 The import javax.ejb cannot be resolved FacultyBudgetLocal.java webera/JavaSource/era/budget line 6 January 30, 2008 11:32:26 AM
2 EJBLocalObject cannot be resolved to a type FacultyBudgetLocal.java webera/JavaSource/era/budget line 14 January 30, 2008 11:32:26 AM
2 The import javax.ejb cannot be resolved FacultyBudgetLocalHome.java webera/JavaSource/era/budget line 6 January 30, 2008 11:32:26 AM
2 EJBLocalHome cannot be resolved to a type FacultyBudgetLocalHome.java webera/JavaSource/era/budget line 14 January 30, 2008 11:32:26 AM
2 CreateException cannot be resolved to a type FacultyBudgetLocalHome.java webera/JavaSource/era/budget line 18 January 30, 2008 11:32:26 AM
2 CreateException cannot be resolved to a type FacultyBudgetLocalHome.java webera/JavaSource/era/budget line 19 January 30, 2008 11:32:26 AM
2 FinderException cannot be resolved to a type FacultyBudgetLocalHome.java webera/JavaSource/era/budget line 23 January 30, 2008 11:32:26 AM
2 FinderException cannot be resolved to a type FacultyBudgetLocalHome.java webera/JavaSource/era/budget line 24 January 30, 2008 11:32:26 AM
2 FinderException cannot be resolved to a type FacultyBudgetLocalHome.java webera/JavaSource/era/budget line 25 January 30, 2008 11:32:26 AM
2 The import javax.ejb cannot be resolved FacultyBudgetManagerBean.java webera/JavaSource/era/budget line 6 January 30, 2008 11:32:26 AM
2 SessionBean cannot be resolved to a type FacultyBudgetManagerBean.java webera/JavaSource/era/budget line 25 January 30, 2008 11:32:26 AM
2 SessionContext cannot be resolved to a type FacultyBudgetManagerBean.java webera/JavaSource/era/budget line 27 January 30, 2008 11:32:26 AM
2 FinderException cannot be resolved to a type FacultyBudgetManagerBean.java webera/JavaSource/era/budget line 40 January 30, 2008 11:32:26 AM
2 CreateException cannot be resolved to a type FacultyBudgetManagerBean.java webera/JavaSource/era/budget line 52 January 30, 2008 11:32:26 AM