- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中org.eclipse.xsd.impl.XSDSchemaImpl.getIdentityConstraintDefinitions()
方法的一些代码示例,展示了XSDSchemaImpl.getIdentityConstraintDefinitions()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。XSDSchemaImpl.getIdentityConstraintDefinitions()
方法的具体详情如下:
包路径:org.eclipse.xsd.impl.XSDSchemaImpl
类名称: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();
本文整理了Java中org.eclipse.xsd.impl.XSDSchemaImpl.getIdentityConstraintDefinitions()方法的一些代码示例,展示了XSDSchem
我是一名优秀的程序员,十分优秀!