List of usage examples for org.eclipse.jdt.internal.core ClasspathEntry getExtraAttributes
@Override
public IClasspathAttribute[] getExtraAttributes()
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; }/*ww w . j a v a 2s .co m*/ path = chainedEntry.getSourceAttachmentRootPath(); if (path != null) { resolvedEntry.sourceAttachmentRootPath = path; } IClasspathAttribute[] attributes = chainedEntry.getExtraAttributes(); if (attributes != null) { resolvedEntry.extraAttributes = attributes; } }