mirror of https://github.com/Minres/RDL-Editor.git
13 lines
337 B
Java
13 lines
337 B
Java
|
package com.minres.rdl.ui;
|
||
|
|
||
|
import org.eclipse.emf.ecore.EObject;
|
||
|
import org.eclipse.xtext.documentation.IEObjectDocumentationProvider;
|
||
|
|
||
|
@SuppressWarnings("all")
|
||
|
public class RDLEObjectDocumentationProvider implements IEObjectDocumentationProvider {
|
||
|
@Override
|
||
|
public String getDocumentation(final EObject o) {
|
||
|
return null;
|
||
|
}
|
||
|
}
|