Tabnine Logo
XSDSimpleTypeDefinition.getQName
Code IndexAdd Tabnine to your IDE (free)

How to use
getQName
method
in
org.eclipse.xsd.XSDSimpleTypeDefinition

Best Java code snippets using org.eclipse.xsd.XSDSimpleTypeDefinition.getQName (Showing top 6 results out of 315)

origin: org.eclipse/org.eclipse.wst.xsd.ui

 private void initializeMemberListContent()
 {
//    String result = element.getAttribute(XSDConstants.MEMBERTYPES_ATTRIBUTE);
//    if (result == null)
//    {
//      return;
//    }
//    StringTokenizer token = new StringTokenizer(result);
//    while (token.hasMoreTokens())
//    {
//      memberTypesList.add(token.nextToken());
//    }
  XSDSchema schema = simpleType.getSchema();
  for (Iterator i = simpleType.getMemberTypeDefinitions().iterator(); i.hasNext(); )
  {
   String name = ((XSDSimpleTypeDefinition)i.next()).getQName(schema);
   if (name != null)
   memberTypesList.add(name);
  }
 }

origin: org.eclipse.emf/org.eclipse.xsd.edit

@Override
public String getText(Object object)
{
 XSDAttributeDeclaration xsdAttributeDeclaration = ((XSDAttributeDeclaration)object);
 XSDAttributeDeclaration resolvedAttributeDeclaration = xsdAttributeDeclaration.getResolvedAttributeDeclaration();
 String name =
  xsdAttributeDeclaration != resolvedAttributeDeclaration ?
   xsdAttributeDeclaration.getQName() :
   xsdAttributeDeclaration.getName();
 StringBuffer result = new StringBuffer();
 if (name == null)
 {
  result.append(XSDEditPlugin.INSTANCE.getString("_UI_Absent_label"));
 }
 else
 {
  result.append(name);
 }
 if (resolvedAttributeDeclaration.getAnonymousTypeDefinition() == null && resolvedAttributeDeclaration.getTypeDefinition() != null)
 {
  result.append(" : ");
  result.append(resolvedAttributeDeclaration.getTypeDefinition().getQName(xsdAttributeDeclaration));
 }
 return result.toString();
}
origin: org.eclipse/org.eclipse.wst.xsd.ui

result.append(baseTypeDefinition.getQName(xsdSimpleTypeDefinition));
 result.append(itemTypeDefinition.getQName(xsdSimpleTypeDefinition));
   result.append(memberTypeDefinition.getQName(xsdSimpleTypeDefinition));
origin: org.eclipse.emf/org.eclipse.xsd.edit

result.append(baseTypeDefinition.getQName(xsdSimpleTypeDefinition));
 result.append(itemTypeDefinition.getQName());
   result.append(memberTypeDefinition.getQName());
origin: org.eclipse/org.eclipse.wst.xsd.ui

sb.append(st.getQName(xsdSchema));
origin: org.eclipse/org.eclipse.wst.xsd.ui

String name = typeObject.getQName();
if (name != null)
org.eclipse.xsdXSDSimpleTypeDefinitiongetQName

Popular methods of XSDSimpleTypeDefinition

  • getItemTypeDefinition
    Returns the value of the 'Item Type Definition' reference. This represents theitem type definition [
  • getVariety
    Returns the value of the 'Variety' attribute. The literals are from the enumeration org.eclipse.xsd.
  • getMaxLengthFacet
    Returns the value of the 'Max Length Facet' reference. This represents the org.eclipse.xsd.XSDMaxLen
  • getMinLengthFacet
    Returns the value of the 'Min Length Facet' reference. This represents the org.eclipse.xsd.XSDMinLen
  • getEnumerationFacets
    Returns the value of the 'Enumeration Facets' reference list. The list contents are of type org.ecli
  • getFacets
    Returns the value of the 'Facets' reference list. The list contents are of type org.eclipse.xsd.XSDC
  • getLengthFacet
    Returns the value of the 'Length Facet' reference. This represents the org.eclipse.xsd.XSDLengthFace
  • getName
  • getBaseType
  • getBaseTypeDefinition
    Returns the value of the 'Base Type Definition' reference. This represents thebase type definition [
  • getContainer
  • getContents
    Returns the value of the 'Contents' containment reference list. The list contents are of type org.ec
  • getContainer,
  • getContents,
  • getMaxFacet,
  • getMemberTypeDefinitions,
  • getTargetNamespace,
  • getValidFacets,
  • setBaseTypeDefinition,
  • setItemTypeDefinition,
  • setName,
  • setVariety

Popular in Java

  • Running tasks concurrently on multiple threads
  • putExtra (Intent)
  • setRequestProperty (URLConnection)
  • getSystemService (Context)
  • FlowLayout (java.awt)
    A flow layout arranges components in a left-to-right flow, much like lines of text in a paragraph. F
  • Menu (java.awt)
  • InputStreamReader (java.io)
    A class for turning a byte stream into a character stream. Data read from the source input stream is
  • ByteBuffer (java.nio)
    A buffer for bytes. A byte buffer can be created in either one of the following ways: * #allocate
  • JList (javax.swing)
  • BasicDataSource (org.apache.commons.dbcp)
    Basic implementation of javax.sql.DataSource that is configured via JavaBeans properties. This is no
  • Top Sublime Text plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now