List of usage examples for org.eclipse.jdt.core JavaCore getClasspathVariableDeprecationMessage
public static String getClasspathVariableDeprecationMessage(String variableName)
From source file:at.bestsolution.javafx.ide.jdt.internal.jdt.CPListElement.java
License:Open Source License
public boolean isDeprecated() { if (fEntryKind != IClasspathEntry.CPE_VARIABLE) { return false; }//from ww w . j av a2 s .co m if (fPath.segmentCount() > 0) { return JavaCore.getClasspathVariableDeprecationMessage(fPath.segment(0)) != null; } return false; }