The file student-src/ports/sidl/integrator.sidl already contains the integrator.IntegratorPort SIDL declaration:
package integrator version 1.0 {
interface IntegratorPort extends gov.cca.Port
{
double integrate(in double lowBound, in double upBound,
in int count);
}
}
The integrator.IntegratorPort SIDL interface extends the gov.cca.Port interface, which does not have any methods. Thus, the only method in the integrator.IntegratorPort is integrate, which takes several arguments that determine the region of integration and the number of points at which the function is evaluated.