List of usage examples for org.eclipse.jdt.internal.core ClasspathEntry getSourceAttachmentRootPath
@Override
public IPath getSourceAttachmentRootPath()
From source file:org.eclipse.jdt.internal.core.JavaProject.java
License:Open Source License
private void copyFromOldChainedEntry(ClasspathEntry resolvedEntry, ClasspathEntry chainedEntry) { IPath path = chainedEntry.getSourceAttachmentPath(); if (path != null) { resolvedEntry.sourceAttachmentPath = path; }/* w w w. j a v a 2 s .co m*/ path = chainedEntry.getSourceAttachmentRootPath(); if (path != null) { resolvedEntry.sourceAttachmentRootPath = path; } IClasspathAttribute[] attributes = chainedEntry.getExtraAttributes(); if (attributes != null) { resolvedEntry.extraAttributes = attributes; } }