本文整理匯總了Java中org.eclipse.emf.common.util.Diagnostic.getSeverity方法的典型用法代碼示例。如果您正苦於以下問題:Java Diagnostic.getSeverity方法的具體用法?Java Diagnostic.getSeverity怎麽用?Java Diagnostic.getSeverity使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.eclipse.emf.common.util.Diagnostic
的用法示例。
在下文中一共展示了Diagnostic.getSeverity方法的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: createModel
import org.eclipse.emf.common.util.Diagnostic; //導入方法依賴的package包/類
/**
* This is the method called to load a resource into the editing domain's resource set based on the editor's input.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void createModel() {
URI resourceURI = EditUIUtil.getURI(getEditorInput(), editingDomain.getResourceSet().getURIConverter());
Exception exception = null;
Resource resource = null;
try {
// Load the resource through the editing domain.
//
resource = editingDomain.getResourceSet().getResource(resourceURI, true);
}
catch (Exception e) {
exception = e;
resource = editingDomain.getResourceSet().getResource(resourceURI, false);
}
Diagnostic diagnostic = analyzeResourceProblems(resource, exception);
if (diagnostic.getSeverity() != Diagnostic.OK) {
resourceToDiagnosticMap.put(resource, analyzeResourceProblems(resource, exception));
}
editingDomain.getResourceSet().eAdapters().add(problemIndicationAdapter);
}
示例2: notifyChanged
import org.eclipse.emf.common.util.Diagnostic; //導入方法依賴的package包/類
@Override
public void notifyChanged(Notification notification) {
if (notification.getNotifier() instanceof Resource) {
switch (notification.getFeatureID(Resource.class)) {
case Resource.RESOURCE__IS_LOADED:
case Resource.RESOURCE__ERRORS:
case Resource.RESOURCE__WARNINGS: {
Resource resource = (Resource)notification.getNotifier();
Diagnostic diagnostic = analyzeResourceProblems(resource, null);
if (diagnostic.getSeverity() != Diagnostic.OK) {
resourceToDiagnosticMap.put(resource, diagnostic);
}
else {
resourceToDiagnosticMap.remove(resource);
}
dispatchUpdateProblemIndication();
break;
}
}
}
else {
super.notifyChanged(notification);
}
}
示例3: createModel
import org.eclipse.emf.common.util.Diagnostic; //導入方法依賴的package包/類
/**
* This is the method called to load a resource into the editing domain's resource set based on the editor's input.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void createModel ()
{
URI resourceURI = EditUIUtil.getURI ( getEditorInput () );
Exception exception = null;
Resource resource = null;
try
{
// Load the resource through the editing domain.
//
resource = editingDomain.getResourceSet ().getResource ( resourceURI, true );
}
catch ( Exception e )
{
exception = e;
resource = editingDomain.getResourceSet ().getResource ( resourceURI, false );
}
Diagnostic diagnostic = analyzeResourceProblems ( resource, exception );
if ( diagnostic.getSeverity () != Diagnostic.OK )
{
resourceToDiagnosticMap.put ( resource, analyzeResourceProblems ( resource, exception ) );
}
editingDomain.getResourceSet ().eAdapters ().add ( problemIndicationAdapter );
}
示例4: notifyChanged
import org.eclipse.emf.common.util.Diagnostic; //導入方法依賴的package包/類
@Override
public void notifyChanged ( Notification notification )
{
if ( notification.getNotifier () instanceof Resource )
{
switch ( notification.getFeatureID ( Resource.class ) )
{
case Resource.RESOURCE__IS_LOADED:
case Resource.RESOURCE__ERRORS:
case Resource.RESOURCE__WARNINGS:
{
Resource resource = (Resource)notification.getNotifier ();
Diagnostic diagnostic = analyzeResourceProblems ( resource, null );
if ( diagnostic.getSeverity () != Diagnostic.OK )
{
resourceToDiagnosticMap.put ( resource, diagnostic );
}
else
{
resourceToDiagnosticMap.remove ( resource );
}
if ( updateProblemIndication )
{
getSite ().getShell ().getDisplay ().asyncExec ( new Runnable () {
public void run ()
{
updateProblemIndication ();
}
} );
}
break;
}
}
}
else
{
super.notifyChanged ( notification );
}
}
示例5: notifyChanged
import org.eclipse.emf.common.util.Diagnostic; //導入方法依賴的package包/類
@Override
public void notifyChanged(Notification notification) {
if (notification.getNotifier() instanceof Resource) {
switch (notification.getFeatureID(Resource.class)) {
case Resource.RESOURCE__IS_LOADED:
case Resource.RESOURCE__ERRORS:
case Resource.RESOURCE__WARNINGS: {
Resource resource = (Resource)notification.getNotifier();
Diagnostic diagnostic = analyzeResourceProblems(resource, null);
if (diagnostic.getSeverity() != Diagnostic.OK) {
resourceToDiagnosticMap.put(resource, diagnostic);
}
else {
resourceToDiagnosticMap.remove(resource);
}
if (updateProblemIndication) {
getSite().getShell().getDisplay().asyncExec
(new Runnable() {
public void run() {
updateProblemIndication();
}
});
}
break;
}
}
}
else {
super.notifyChanged(notification);
}
}
示例6: createModel
import org.eclipse.emf.common.util.Diagnostic; //導入方法依賴的package包/類
/**
* This is the method called to load a resource into the editing domain's
* resource set based on the editor's input.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @generated
*/
public void createModel ()
{
final URI resourceURI = EditUIUtil.getURI ( getEditorInput () );
Exception exception = null;
Resource resource = null;
try
{
// Load the resource through the editing domain.
//
resource = this.editingDomain.getResourceSet ().getResource ( resourceURI,
true );
}
catch ( final Exception e )
{
exception = e;
resource = this.editingDomain.getResourceSet ().getResource ( resourceURI,
false );
}
final Diagnostic diagnostic = analyzeResourceProblems ( resource, exception );
if ( diagnostic.getSeverity () != Diagnostic.OK )
{
this.resourceToDiagnosticMap.put ( resource,
analyzeResourceProblems ( resource, exception ) );
}
this.editingDomain.getResourceSet ().eAdapters ()
.add ( this.problemIndicationAdapter );
}
示例7: notifyChanged
import org.eclipse.emf.common.util.Diagnostic; //導入方法依賴的package包/類
@Override
public void notifyChanged ( Notification notification )
{
if ( notification.getNotifier () instanceof Resource )
{
switch ( notification.getFeatureID ( Resource.class ) )
{
case Resource.RESOURCE__IS_LOADED:
case Resource.RESOURCE__ERRORS:
case Resource.RESOURCE__WARNINGS:
{
Resource resource = (Resource)notification.getNotifier ();
Diagnostic diagnostic = analyzeResourceProblems ( resource, null );
if ( diagnostic.getSeverity () != Diagnostic.OK )
{
resourceToDiagnosticMap.put ( resource, diagnostic );
}
else
{
resourceToDiagnosticMap.remove ( resource );
}
if ( updateProblemIndication )
{
getSite ().getShell ().getDisplay ().asyncExec
( new Runnable ()
{
public void run ()
{
updateProblemIndication ();
}
} );
}
break;
}
}
}
else
{
super.notifyChanged ( notification );
}
}