gpt4 book ai didi

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

转载 作者:知者 更新时间:2024-03-26 11:51:05 27 4
gpt4 key购买 nike

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

XSDAttributeGroupDefinition.getQName介绍

暂无

代码示例

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

public String getText()
{
 XSDAttributeGroupDefinition xsdAttributeGroupDefinition = (XSDAttributeGroupDefinition) target;
 String result = xsdAttributeGroupDefinition.isAttributeGroupDefinitionReference() ? xsdAttributeGroupDefinition.getQName() : xsdAttributeGroupDefinition.getName();
 return result == null ? Messages._UI_LABEL_ABSENT : result;
}

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

@Override
public String getQName()
{
 XSDAttributeGroupDefinition resolvedAttributeGroupDefinition = getResolvedAttributeGroupDefinition();
 if (resolvedAttributeGroupDefinition == this)
 {
  return super.getQName();
 }
 else
 {
  return resolvedAttributeGroupDefinition.getQName(this);
 }
}

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

@Override
public String getQName()
{
 XSDAttributeGroupDefinition resolvedAttributeGroupDefinition = getResolvedAttributeGroupDefinition();
 if (resolvedAttributeGroupDefinition == this)
 {
  return super.getQName();
 }
 else
 {
  return resolvedAttributeGroupDefinition.getQName(this);
 }
}

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

@Override
public String getText(Object object)
{
 XSDAttributeGroupDefinition xsdAttributeGroupDefinition = ((XSDAttributeGroupDefinition)object);
 String result =  
  xsdAttributeGroupDefinition.isAttributeGroupDefinitionReference() ?
   xsdAttributeGroupDefinition.getQName() :
   xsdAttributeGroupDefinition.getName();
 return result == null ? XSDEditPlugin.INSTANCE.getString("_UI_Absent_label") : result;
}

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

public java.util.List getGlobalAttributeGroups()
{
 Vector items = new Vector();
 if (xsdSchema != null)
 {
  updateExternalImportGlobals();
  if (xsdSchema.getAttributeGroupDefinitions() != null)
  {
   Iterator i = xsdSchema.getAttributeGroupDefinitions().iterator();
   while (i.hasNext())
   {
    XSDAttributeGroupDefinition attributeGroupDefinition = (XSDAttributeGroupDefinition) i.next();
    String name = attributeGroupDefinition.getQName(xsdSchema);
    if (name != null)
    {
     items.add(name);
    }
   }
  }
  //      items = addExternalImportedAttributeGroups(items);
  items = (Vector) sortList(items);
 }
 return items;
}

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