
org.jnario.feature.linking.FeatureLinkingDiagnosticMessageProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.jnario.standalone Show documentation
Show all versions of org.jnario.standalone Show documentation
The required libraries to execute Jnario specifications without Eclipse.
The newest version!
package org.jnario.feature.linking;
import org.eclipse.xtend.core.linking.XtendLinkingDiagnosticMessageProvider;
import org.eclipse.xtext.diagnostics.DiagnosticMessage;
import org.jnario.feature.feature.StepReference;
public class FeatureLinkingDiagnosticMessageProvider extends XtendLinkingDiagnosticMessageProvider {
@Override
public DiagnosticMessage getUnresolvedProxyMessage(ILinkingDiagnosticContext context) {
if(context.getContext() instanceof StepReference){
return null;
}
return super.getUnresolvedProxyMessage(context);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy