FileDocCategorySizeDatePackage
ClasspathEntryMock.javaAPI DocAndroid 1.5 API2376Wed May 06 22:41:10 BST 2009com.android.ide.eclipse.mock

ClasspathEntryMock

public class ClasspathEntryMock extends Object implements org.eclipse.jdt.core.IClasspathEntry

Fields Summary
private int
mKind
private org.eclipse.core.runtime.IPath
mPath
Constructors Summary
public ClasspathEntryMock(org.eclipse.core.runtime.IPath path, int kind)

        mPath = path;
        mKind = kind;
    
Methods Summary
public booleancombineAccessRules()

        throw new NotImplementedException();
    
public org.eclipse.jdt.core.IAccessRule[]getAccessRules()

        throw new NotImplementedException();
    
public intgetContentKind()

        throw new NotImplementedException();
    
public intgetEntryKind()

        return mKind;
    
public org.eclipse.core.runtime.IPath[]getExclusionPatterns()

        throw new NotImplementedException();
    
public org.eclipse.jdt.core.IClasspathAttribute[]getExtraAttributes()

        throw new NotImplementedException();
    
public org.eclipse.core.runtime.IPath[]getInclusionPatterns()

        throw new NotImplementedException();
    
public org.eclipse.core.runtime.IPathgetOutputLocation()

        throw new NotImplementedException();
    
public org.eclipse.core.runtime.IPathgetPath()

        return mPath;
    
public org.eclipse.jdt.core.IClasspathEntrygetResolvedEntry()

        throw new NotImplementedException();
    
public org.eclipse.core.runtime.IPathgetSourceAttachmentPath()

        throw new NotImplementedException();
    
public org.eclipse.core.runtime.IPathgetSourceAttachmentRootPath()

        throw new NotImplementedException();
    
public booleanisExported()

        throw new NotImplementedException();