help finding service component implementation
5 answers
where do I find the implementation of
public class WorkItemClient {
public native static void getLinkTypes(
ServiceResponseHandler<LinkTypeDTO> responseHandler,
ParmsGetLinkTypes parms);
(rtc 3.0.1.1)
Sam, have you tried in an Eclipse with SDK set up to navigate to the class (Find references/declarations)?
For ServiceResponseHandler I found
package com.ibm.jdojo.repository.web.transport;
import com.ibm.jdojo.lang.DojoObject;
import com.ibm.jdojo.lang.IJSFunction;
import com.ibm.jdojo.lang.annotations.Inline;
import com.ibm.jdojo.lang.annotations.Stub;
import com.ibm.jdojo.repository.web.rest.TeamRepositoryExceptionData;
@Stub("com.ibm.team.repository.web.transport.ServiceResponseHandler")
public class ServiceResponseHandler<T> extends DojoObject {