gpt4 book ai didi

org.eclipse.xsd.impl.XSDSchemaImpl.getIdentityConstraintDefinitions()方法的使用及代码示例

转载 作者:知者 更新时间:2024-03-25 15:47:05 27 4
gpt4 key购买 nike

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

XSDSchemaImpl.getIdentityConstraintDefinitions介绍

暂无

代码示例

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

@Override
 public Object caseXSDIdentityConstraintDefinition(XSDIdentityConstraintDefinition xsdIdentityConstraintDefinition)
 {
  if (getIdentityConstraintDefinitions().remove(xsdIdentityConstraintDefinition))
  {
   XSDNamedComponentImpl.addToSortedList(getIdentityConstraintDefinitions(), xsdIdentityConstraintDefinition);
  }
  return this;
 }
}.doSwitch(xsdNamedComponent);

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

@Override
 public Object caseXSDIdentityConstraintDefinition(XSDIdentityConstraintDefinition xsdIdentityConstraintDefinition)
 {
  if (getIdentityConstraintDefinitions().remove(xsdIdentityConstraintDefinition))
  {
   XSDNamedComponentImpl.addToSortedList(getIdentityConstraintDefinitions(), xsdIdentityConstraintDefinition);
  }
  return this;
 }
}.doSwitch(xsdNamedComponent);

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

return;
case XSDPackage.XSD_SCHEMA__IDENTITY_CONSTRAINT_DEFINITIONS:
 getIdentityConstraintDefinitions().clear();
 getIdentityConstraintDefinitions().addAll((Collection<? extends XSDIdentityConstraintDefinition>)newValue);
 return;
case XSDPackage.XSD_SCHEMA__NOTATION_DECLARATIONS:

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

return;
case XSDPackage.XSD_SCHEMA__IDENTITY_CONSTRAINT_DEFINITIONS:
 getIdentityConstraintDefinitions().clear();
 getIdentityConstraintDefinitions().addAll((Collection<? extends XSDIdentityConstraintDefinition>)newValue);
 return;
case XSDPackage.XSD_SCHEMA__NOTATION_DECLARATIONS:

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

return;
case XSDPackage.XSD_SCHEMA__IDENTITY_CONSTRAINT_DEFINITIONS:
 getIdentityConstraintDefinitions().clear();
 return;
case XSDPackage.XSD_SCHEMA__NOTATION_DECLARATIONS:

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

return;
case XSDPackage.XSD_SCHEMA__IDENTITY_CONSTRAINT_DEFINITIONS:
 getIdentityConstraintDefinitions().clear();
 return;
case XSDPackage.XSD_SCHEMA__NOTATION_DECLARATIONS:

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

@Override
public void reset()
{
 super.reset();
 redefinitionMap.clear();
 reset(getAttributeDeclarations());
 reset(getAttributeGroupDefinitions());
 reset(getElementDeclarations());
 reset(getModelGroupDefinitions());
 reset(getTypeDefinitions());
 reset(getNotationDeclarations());
 reset(getIdentityConstraintDefinitions());
 forceResolve = true;
 update();
 forceResolve = false;
}

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

@Override
public void reset()
{
 super.reset();
 redefinitionMap.clear();
 reset(getAttributeDeclarations());
 reset(getAttributeGroupDefinitions());
 reset(getElementDeclarations());
 reset(getModelGroupDefinitions());
 reset(getTypeDefinitions());
 reset(getNotationDeclarations());
 reset(getIdentityConstraintDefinitions());
 forceResolve = true;
 update();
 forceResolve = false;
}

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

public void propogateComponents(XSDSchema otherXSDSchema)
{
 otherXSDSchema.getAnnotations().addAll(getAnnotations());
 XSDNamedComponentImpl.mergeToSortedList
  (otherXSDSchema.getAttributeDeclarations(), getAttributeDeclarations());
 XSDNamedComponentImpl.mergeToSortedList
  (otherXSDSchema.getAttributeGroupDefinitions(), getAttributeGroupDefinitions());
 XSDNamedComponentImpl.mergeToSortedList
  (otherXSDSchema.getElementDeclarations(), getElementDeclarations());
 XSDNamedComponentImpl.mergeToSortedList
  (otherXSDSchema.getModelGroupDefinitions(), getModelGroupDefinitions());
 XSDNamedComponentImpl.mergeToSortedList
  (otherXSDSchema.getTypeDefinitions(), getTypeDefinitions());
 XSDNamedComponentImpl.mergeToSortedList
  (otherXSDSchema.getNotationDeclarations(), getNotationDeclarations());
 XSDNamedComponentImpl.mergeToSortedList
  (otherXSDSchema.getIdentityConstraintDefinitions(), getIdentityConstraintDefinitions());
}

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

public void propogateComponents(XSDSchema otherXSDSchema)
{
 otherXSDSchema.getAnnotations().addAll(getAnnotations());
 XSDNamedComponentImpl.mergeToSortedList
  (otherXSDSchema.getAttributeDeclarations(), getAttributeDeclarations());
 XSDNamedComponentImpl.mergeToSortedList
  (otherXSDSchema.getAttributeGroupDefinitions(), getAttributeGroupDefinitions());
 XSDNamedComponentImpl.mergeToSortedList
  (otherXSDSchema.getElementDeclarations(), getElementDeclarations());
 XSDNamedComponentImpl.mergeToSortedList
  (otherXSDSchema.getModelGroupDefinitions(), getModelGroupDefinitions());
 XSDNamedComponentImpl.mergeToSortedList
  (otherXSDSchema.getTypeDefinitions(), getTypeDefinitions());
 XSDNamedComponentImpl.mergeToSortedList
  (otherXSDSchema.getNotationDeclarations(), getNotationDeclarations());
 XSDNamedComponentImpl.mergeToSortedList
  (otherXSDSchema.getIdentityConstraintDefinitions(), getIdentityConstraintDefinitions());
}

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

validateNoDuplicates("element_noun", getElementDeclarations());
validateNoDuplicates("type_noun", getTypeDefinitions());
validateNoDuplicates("identityConstraint_noun", getIdentityConstraintDefinitions());
validateNoDuplicates("notation_noun", getNotationDeclarations());

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

validateNoDuplicates("element_noun", getElementDeclarations());
validateNoDuplicates("type_noun", getTypeDefinitions());
validateNoDuplicates("identityConstraint_noun", getIdentityConstraintDefinitions());
validateNoDuplicates("notation_noun", getNotationDeclarations());

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

return getModelGroupDefinitions();
case XSDPackage.XSD_SCHEMA__IDENTITY_CONSTRAINT_DEFINITIONS:
 return getIdentityConstraintDefinitions();
case XSDPackage.XSD_SCHEMA__NOTATION_DECLARATIONS:
 return getNotationDeclarations();

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

return getModelGroupDefinitions();
case XSDPackage.XSD_SCHEMA__IDENTITY_CONSTRAINT_DEFINITIONS:
 return getIdentityConstraintDefinitions();
case XSDPackage.XSD_SCHEMA__NOTATION_DECLARATIONS:
 return getNotationDeclarations();

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com