FileDocCategorySizeDatePackage
AndroidClasspathContainer.javaAPI DocAndroid 1.5 API1929Wed May 06 22:41:10 BST 2009com.android.ide.eclipse.adt.project.internal

AndroidClasspathContainer

public class AndroidClasspathContainer extends Object implements org.eclipse.jdt.core.IClasspathContainer
Classpath container for the Android projects.

Fields Summary
private org.eclipse.jdt.core.IClasspathEntry[]
mClasspathEntry
private org.eclipse.core.runtime.IPath
mContainerPath
private String
mName
Constructors Summary
AndroidClasspathContainer(org.eclipse.jdt.core.IClasspathEntry[] entries, org.eclipse.core.runtime.IPath path, String name)
Constructs the container with the {@link IClasspathEntry} representing the android framework jar file and the container id

param
entries the entries representing the android framework and optional libraries.
param
path the path containing the classpath container id.
param
name the name of the container to display.

        mClasspathEntry = entries;
        mContainerPath = path;
        mName = name;
    
Methods Summary
public org.eclipse.jdt.core.IClasspathEntry[]getClasspathEntries()

        return mClasspathEntry;
    
public java.lang.StringgetDescription()

        return mName;
    
public intgetKind()

        return IClasspathContainer.K_DEFAULT_SYSTEM;
    
public org.eclipse.core.runtime.IPathgetPath()

        return mContainerPath;