本文整理汇总了Java中org.eclipse.emf.ecore.resource.Resource.Factory方法的典型用法代码示例。如果您正苦于以下问题:Java Resource.Factory方法的具体用法?Java Resource.Factory怎么用?Java Resource.Factory使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.eclipse.emf.ecore.resource.Resource
的用法示例。
在下文中一共展示了Resource.Factory方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getRegistrations
import org.eclipse.emf.ecore.resource.Resource; //导入方法依赖的package包/类
/**
* Register for "*" and "xml" file extensions the ChartResourceFactoryImpl factory.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected Map<String, Resource.Factory> getRegistrations ()
{
if ( registrations == null )
{
super.getRegistrations ();
registrations.put ( XML_EXTENSION, new ChartResourceFactoryImpl () );
registrations.put ( STAR_EXTENSION, new ChartResourceFactoryImpl () );
}
return registrations;
}
示例2: getRegistrations
import org.eclipse.emf.ecore.resource.Resource; //导入方法依赖的package包/类
/**
* Register for "*" and "xml" file extensions the GrmResourceFactoryImpl factory.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected Map<String, Resource.Factory> getRegistrations() {
if (registrations == null) {
super.getRegistrations();
registrations.put(XML_EXTENSION, new GrmResourceFactoryImpl());
registrations.put(STAR_EXTENSION, new GrmResourceFactoryImpl());
}
return registrations;
}
示例3: getRegistrations
import org.eclipse.emf.ecore.resource.Resource; //导入方法依赖的package包/类
/**
* Register for "*" and "xml" file extensions the MarkitwireResourceResourceFactoryImpl factory.
* <!-- begin-user-doc
* --> <!-- end-user-doc -->
* @generated
*/
@Override
protected Map<String, Resource.Factory> getRegistrations()
{
if (registrations == null)
{
super.getRegistrations();
registrations.put(XML_EXTENSION, new MarkitwireResourceResourceFactoryImpl());
registrations.put(STAR_EXTENSION, new MarkitwireResourceResourceFactoryImpl());
}
return registrations;
}
示例4: getRegistrations
import org.eclipse.emf.ecore.resource.Resource; //导入方法依赖的package包/类
/**
* Register for "*" and "xml" file extensions the CometModuleResourceFactoryImpl factory.
* <!-- begin-user-doc --> <!--
* end-user-doc -->
* @generated
*/
@Override
protected Map<String, Resource.Factory> getRegistrations()
{
if (registrations == null)
{
super.getRegistrations();
registrations.put(XML_EXTENSION, new CometModuleResourceFactoryImpl());
registrations.put(STAR_EXTENSION, new CometModuleResourceFactoryImpl());
}
return registrations;
}
示例5: getRegistrations
import org.eclipse.emf.ecore.resource.Resource; //导入方法依赖的package包/类
/**
* Register for "*" and "xml" file extensions the ExporterResourceFactoryImpl factory.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected Map<String, Resource.Factory> getRegistrations ()
{
if ( registrations == null )
{
super.getRegistrations ();
registrations.put ( XML_EXTENSION, new ExporterResourceFactoryImpl () );
registrations.put ( STAR_EXTENSION, new ExporterResourceFactoryImpl () );
}
return registrations;
}
示例6: getRegistrations
import org.eclipse.emf.ecore.resource.Resource; //导入方法依赖的package包/类
/**
* Register for "*" and "xml" file extensions the ListenersResourceFactoryImpl factory.
* <!-- begin-user-doc --> <!--
* end-user-doc -->
* @generated
*/
@Override
protected Map<String, Resource.Factory> getRegistrations()
{
if (registrations == null)
{
super.getRegistrations();
registrations.put(XML_EXTENSION, new ListenersResourceFactoryImpl());
registrations.put(STAR_EXTENSION, new ListenersResourceFactoryImpl());
}
return registrations;
}
示例7: getRegistrations
import org.eclipse.emf.ecore.resource.Resource; //导入方法依赖的package包/类
/**
* Register for "*" and "xml" file extensions the InformixResourceResourceFactoryImpl factory.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected Map<String, Resource.Factory> getRegistrations()
{
if (registrations == null)
{
super.getRegistrations();
registrations.put(XML_EXTENSION, new InformixResourceResourceFactoryImpl());
registrations.put(STAR_EXTENSION, new InformixResourceResourceFactoryImpl());
}
return registrations;
}
示例8: getRegistrations
import org.eclipse.emf.ecore.resource.Resource; //导入方法依赖的package包/类
/**
* Register for "*" and "xml" file extensions the ShadowDirectResourceResourceFactoryImpl factory.
* <!-- begin-user-doc
* --> <!-- end-user-doc -->
* @generated
*/
@Override
protected Map<String, Resource.Factory> getRegistrations()
{
if (registrations == null)
{
super.getRegistrations();
registrations.put(XML_EXTENSION, new ShadowDirectResourceResourceFactoryImpl());
registrations.put(STAR_EXTENSION, new ShadowDirectResourceResourceFactoryImpl());
}
return registrations;
}
示例9: getRegistrations
import org.eclipse.emf.ecore.resource.Resource; //导入方法依赖的package包/类
/**
* Register for "*" and "xml" file extensions the DocumentumModuleResourceFactoryImpl factory.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected Map<String, Resource.Factory> getRegistrations()
{
if (registrations == null)
{
super.getRegistrations();
registrations.put(XML_EXTENSION, new DocumentumModuleResourceFactoryImpl());
registrations.put(STAR_EXTENSION, new DocumentumModuleResourceFactoryImpl());
}
return registrations;
}
示例10: getRegistrations
import org.eclipse.emf.ecore.resource.Resource; //导入方法依赖的package包/类
/**
* Register for "*" and "xml" file extensions the DirectoryResourceResourceFactoryImpl factory.
* <!-- begin-user-doc
* --> <!-- end-user-doc -->
* @generated
*/
@Override
protected Map<String, Resource.Factory> getRegistrations()
{
if (registrations == null)
{
super.getRegistrations();
registrations.put(XML_EXTENSION, new DirectoryResourceResourceFactoryImpl());
registrations.put(STAR_EXTENSION, new DirectoryResourceResourceFactoryImpl());
}
return registrations;
}
示例11: getRegistrations
import org.eclipse.emf.ecore.resource.Resource; //导入方法依赖的package包/类
/**
* Register for "*" and "xml" file extensions the LdapResourceResourceFactoryImpl factory.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected Map<String, Resource.Factory> getRegistrations()
{
if (registrations == null)
{
super.getRegistrations();
registrations.put(XML_EXTENSION, new LdapResourceResourceFactoryImpl());
registrations.put(STAR_EXTENSION, new LdapResourceResourceFactoryImpl());
}
return registrations;
}
示例12: getRegistrations
import org.eclipse.emf.ecore.resource.Resource; //导入方法依赖的package包/类
/**
* Register for "*" and "xml" file extensions the SaturnResourceFactoryImpl factory.
* <!-- begin-user-doc --> <!--
* end-user-doc -->
* @generated
*/
@Override
protected Map<String, Resource.Factory> getRegistrations()
{
if (registrations == null)
{
super.getRegistrations();
registrations.put(XML_EXTENSION, new SaturnResourceFactoryImpl());
registrations.put(STAR_EXTENSION, new SaturnResourceFactoryImpl());
}
return registrations;
}
示例13: getRegistrations
import org.eclipse.emf.ecore.resource.Resource; //导入方法依赖的package包/类
/**
* Register for "*" and "xml" file extensions the DocumentumResourceResourceFactoryImpl factory.
* <!-- begin-user-doc
* --> <!-- end-user-doc -->
* @generated
*/
@Override
protected Map<String, Resource.Factory> getRegistrations()
{
if (registrations == null)
{
super.getRegistrations();
registrations.put(XML_EXTENSION, new DocumentumResourceResourceFactoryImpl());
registrations.put(STAR_EXTENSION, new DocumentumResourceResourceFactoryImpl());
}
return registrations;
}
示例14: getRegistrations
import org.eclipse.emf.ecore.resource.Resource; //导入方法依赖的package包/类
/**
* Register for "*" and "xml" file extensions the XmlValidatorModuleResourceFactoryImpl factory.
* <!-- begin-user-doc
* --> <!-- end-user-doc -->
* @generated
*/
@Override
protected Map<String, Resource.Factory> getRegistrations()
{
if (registrations == null)
{
super.getRegistrations();
registrations.put(XML_EXTENSION, new XmlValidatorModuleResourceFactoryImpl());
registrations.put(STAR_EXTENSION, new XmlValidatorModuleResourceFactoryImpl());
}
return registrations;
}
示例15: getRegistrations
import org.eclipse.emf.ecore.resource.Resource; //导入方法依赖的package包/类
/**
* Register for "*" and "xml" file extensions the SaturnVerbosityResourceFactoryImpl factory.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
protected Map<String, Resource.Factory> getRegistrations()
{
if (registrations == null)
{
super.getRegistrations();
registrations.put(XML_EXTENSION, new SaturnVerbosityResourceFactoryImpl());
registrations.put(STAR_EXTENSION, new SaturnVerbosityResourceFactoryImpl());
}
return registrations;
}