本文整理汇总了Java中org.eclipse.emf.ecore.resource.Resource.isLoaded方法的典型用法代码示例。如果您正苦于以下问题:Java Resource.isLoaded方法的具体用法?Java Resource.isLoaded怎么用?Java Resource.isLoaded使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.eclipse.emf.ecore.resource.Resource
的用法示例。
在下文中一共展示了Resource.isLoaded方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: handleChangedResources
import org.eclipse.emf.ecore.resource.Resource; //导入方法依赖的package包/类
/**
* Handles what to do with changed resources on activation.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected void handleChangedResources() {
if (!changedResources.isEmpty() && (!isDirty() || handleDirtyConflict())) {
if (isDirty()) {
changedResources.addAll(editingDomain.getResourceSet().getResources());
}
editingDomain.getCommandStack().flush();
updateProblemIndication = false;
for (Resource resource : changedResources) {
if (resource.isLoaded()) {
resource.unload();
try {
resource.load(Collections.EMPTY_MAP);
}
catch (IOException exception) {
if (!resourceToDiagnosticMap.containsKey(resource)) {
resourceToDiagnosticMap.put(resource, analyzeResourceProblems(resource, exception));
}
}
}
}
if (AdapterFactoryEditingDomain.isStale(editorSelection)) {
setSelection(StructuredSelection.EMPTY);
}
updateProblemIndication = true;
updateProblemIndication();
}
}
示例2: resolveObject
import org.eclipse.emf.ecore.resource.Resource; //导入方法依赖的package包/类
/**
* {@link EcoreUtil#resolve(EObject, EObject)} pretty much does the same thing but will eagerly load the resource.
* We are happy with the content that we just put into it.
*/
private EObject resolveObject(URI objectURI, Resource resource) {
if (resource.isLoaded())
throw new IllegalStateException("Should not be loaded beforehand");
EObject result = resource.getEObject(objectURI.fragment());
if (resource.isLoaded())
throw new IllegalStateException("Should not be loaded due to fragment traversal");
return result;
}
示例3: handleChangedResources
import org.eclipse.emf.ecore.resource.Resource; //导入方法依赖的package包/类
/**
* Handles what to do with changed resources on activation.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
protected void handleChangedResources ()
{
if ( !changedResources.isEmpty () && ( !isDirty () || handleDirtyConflict () ) )
{
if ( isDirty () )
{
changedResources.addAll ( editingDomain.getResourceSet ().getResources () );
}
editingDomain.getCommandStack ().flush ();
updateProblemIndication = false;
for ( Resource resource : changedResources )
{
if ( resource.isLoaded () )
{
resource.unload ();
try
{
resource.load ( Collections.EMPTY_MAP );
}
catch ( IOException exception )
{
if ( !resourceToDiagnosticMap.containsKey ( resource ) )
{
resourceToDiagnosticMap.put ( resource, analyzeResourceProblems ( resource, exception ) );
}
}
}
}
if ( AdapterFactoryEditingDomain.isStale ( editorSelection ) )
{
setSelection ( StructuredSelection.EMPTY );
}
updateProblemIndication = true;
updateProblemIndication ();
}
}
示例4: loadInstanceModel
import org.eclipse.emf.ecore.resource.Resource; //导入方法依赖的package包/类
/**
* Gets root EObject of given xmi file path
*
* @param xmiFileFullPath file path of xmi file
* @return root @EObject
* @throws IOException
*/
@SuppressWarnings({"rawtypes", "unchecked"})
public static Resource loadInstanceModel(final String xmiFileFullPath) throws IOException {
final Map options = new HashMap();
options.put(XMLResource.OPTION_SCHEMA_LOCATION, Boolean.TRUE);
final ResourceSetImpl resourceSet = new ResourceSetImpl();
resourceSet.getResourceFactoryRegistry().getExtensionToFactoryMap()
.put(Resource.Factory.Registry.DEFAULT_EXTENSION, new XMIResourceFactoryImpl());
Resource resource =
resourceSet.getResource(URI.createPlatformResourceURI(xmiFileFullPath, true), true);
if (resource == null) {
resource = resourceSet.getResource(URI.createFileURI(xmiFileFullPath), true);
if (resource == null) {
resource =
resourceSet.getResource(URI.createPlatformPluginURI(xmiFileFullPath, true), true);
if (resource == null) {
resource = resourceSet.getResource(URI.createURI(xmiFileFullPath), true);
}
}
}
resource.load(options);
if (resource.isLoaded()) {
return resource;
}
return null;
}
示例5: postProcess
import org.eclipse.emf.ecore.resource.Resource; //导入方法依赖的package包/类
/**
* Convenience method to fully resolve all lazy cross-references and perform post-processing on the N4JSResource
* 'resource'. Does nothing if 'resource' is <code>null</code> or not an N4JSResource.
*/
public static final void postProcess(Resource resource) {
if (resource instanceof N4JSResource && resource.isLoaded())
((N4JSResource) resource).performPostProcessing();
}