cancel
Showing results for 
Search instead for 
Did you mean: 

java doc for container ,global container.

Former Member
0 Kudos

Hi ,

Can somebody tell where I can get the javadoc for container and global container.

THnks

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

You can view the the source code also provided if you have proper Decompiler tools.

I have used a tool to open <b>aii_mt_rt.jar</b> and found the following for <b>Global Container</b>.

Global container:


package com.sap.aii.mappingtool.tf3.rt;
import java.util.Map;

public interface GlobalContainer
{
    public void setParameter(String string, Object object);
    
    public Object getParameter(String string);
    
    public Map getParameters();
}

For Container:


package com.sap.aii.mappingtool.tf.rt;
import com.sap.aii.mapping.api.AbstractTrace;

public interface Container
{
    public Object getParameter(String string);
    
    public void setParameter(String string, Object object);
    
    public AbstractTrace getTrace();
    
    public GlobalContainer getGlobalContainer();
}

Hope this helps.

Regards,

Ananth

Answers (2)

Answers (2)

Former Member
0 Kudos

I am speaking about the API for container and global container.I wanted to see the list of methods in the container/global container and what parameters it takes...THE JAVADOC API for container and global container.

THnks

moorthy
Active Contributor
0 Kudos

HI,

Are you talking about documentation for GlobalContainer in XI or something else?

If documentation here you go~

http://help.sap.com/saphelp_nw2004s/helpdata/en/75/8e0f8f3b0c2e4ea5f8d8f9faa9461a/content.htm

Regards,

Moorthy