org.eclipse.xsd.XSDInclude.getSchemaLocation()方法的使用及代码示例

x33g5p2x  于2022-02-03 转载在 其他  
字(2.3k)|赞(0)|评价(0)|浏览(122)

本文整理了Java中org.eclipse.xsd.XSDInclude.getSchemaLocation()方法的一些代码示例,展示了XSDInclude.getSchemaLocation()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。XSDInclude.getSchemaLocation()方法的具体详情如下:
包路径:org.eclipse.xsd.XSDInclude
类名称:XSDInclude
方法名:getSchemaLocation

XSDInclude.getSchemaLocation介绍

暂无

代码示例

代码示例来源:origin: geotools/geotools

XSDInclude include = (XSDInclude) content;
if (!added.contains(include.getSchemaLocation())) {
  includes.add(include);
  added.add(include.getSchemaLocation());

代码示例来源:origin: geotools/geotools

file = findSchemaFile( include.getSchemaLocation() );
logger.log( Level.SEVERE, "Could not find: " + include.getSchemaLocation() + " to copy." );

代码示例来源:origin: geotools/geotools

file = findSchemaFile( include.getSchemaLocation() );
logger.log( Level.SEVERE, "Could not find: " + include.getSchemaLocation() + " to copy." );

代码示例来源:origin: org.eclipse.emf/org.eclipse.xsd.edit

@Override
public String getText(Object object)
{
 XSDInclude xsdInclude = ((XSDInclude)object);
 String result = xsdInclude.getSchemaLocation();
 return result == null ? "" : result;
}

代码示例来源:origin: org.geotools/gt2-xml-xsd

XSDInclude include = (XSDInclude) content;
if (!added.contains(include.getSchemaLocation())) {
  if ( incorporated != null ) {
    includes.add(include);
    added.add(include.getSchemaLocation());
    queue.addLast( incorporated );    
    String msg = "Could not find included schema: " + include.getSchemaLocation(); 
    LOGGER.warning(msg);

代码示例来源:origin: org.geotools/gt2-xml-core

XSDInclude include = (XSDInclude) content;
if (!added.contains(include.getSchemaLocation())) {
  includes.add(include);
  added.add(include.getSchemaLocation());

代码示例来源:origin: org.geotools.xsd/gt-core

XSDInclude include = (XSDInclude) content;
if (!added.contains(include.getSchemaLocation())) {
  includes.add(include);
  added.add(include.getSchemaLocation());

代码示例来源:origin: org.eclipse/org.eclipse.xsd

i.remove();
XSDRedefine xsdRedefineReplaced = XSDFactory.eINSTANCE.createXSDRedefine();
xsdRedefineReplaced.setSchemaLocation(((XSDInclude)component).getSchemaLocation());
i.add(xsdRedefineReplaced);
redefinedSchema.isReconciling = false;

代码示例来源:origin: org.eclipse.xsd/org.eclipse.xsd

i.remove();
XSDRedefine xsdRedefineReplaced = XSDFactory.eINSTANCE.createXSDRedefine();
xsdRedefineReplaced.setSchemaLocation(((XSDInclude)component).getSchemaLocation());
i.add(xsdRedefineReplaced);
redefinedSchema.isReconciling = false;

相关文章