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

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

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

XSDSchema.getNotationDeclarations介绍

[英]Returns the value of the 'Notation Declarations' reference list. The list contents are of type org.eclipse.xsd.XSDNotationDeclaration.

This represents the notation declarations infoset property. It is computed from the #getContents() and should typically not be set directly.
[中]返回“符号声明”引用列表的值。列表内容的类型为org。日食xsd。XSDNotationDeclaration。
这表示notation declarationsinfoset属性。它是根据#getContents()计算的,通常不应直接设置。

代码示例

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

visitAttributeGroupDefinition(attributeGroup);
for (Iterator iterator = schema.getNotationDeclarations().iterator(); iterator.hasNext();)

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

visitAttributeGroupDefinition(attributeGroup);
for (Iterator iterator = schema.getNotationDeclarations().iterator(); iterator.hasNext();)

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

(XSDEditPlugin.INSTANCE.getString("_UI_Notations_label"), 
   XSDEditPlugin.INSTANCE.getImage("full/obj16/XSDNotationDeclaration"),
   xsdSchema.getNotationDeclarations()));
children.add
 (new ChildItemProvider

代码示例来源: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/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());
}

相关文章

微信公众号

最新文章

更多