gpt4 book ai didi

org.eclipse.xsd.XSDLengthFacet类的使用及代码示例

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

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

XSDLengthFacet介绍

[英]A representation of the model object 'Length Facet'.

The following features are supported:

  • org.eclipse.xsd.XSDLengthFacet#getValue
    [中]模型对象Length Facet的表示形式。
    支持以下功能:
    *组织。日食xsd。XSDLengthFacet#getValue

代码示例

代码示例来源:origin: geotools/geotools

public int length(XSDTypeDefinition definition) {
  try {
    XSDSimpleTypeDefinition simple = (XSDSimpleTypeDefinition) definition;
    XSDLengthFacet facet = simple.getLengthFacet();
    if (facet == null) {
      return Integer.MAX_VALUE;
    }
    return Integer.parseInt(facet.getLexicalValue());
  } catch (NumberFormatException ignore) {
    return Integer.MIN_VALUE;
  }
}

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

@Override
public Object caseXSDLengthFacet(XSDLengthFacet xsdLengthFacet)
{
 extendedMetaData.setLengthFacet(eDataType, xsdLengthFacet.getValue());
 return this;
}
@Override

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

if (lengthFacet != null)
 currentLength = lengthFacet.getLexicalValue();
    lengthFacet.setLexicalValue(max);
    xsdSimpleType.getFacetContents().add(lengthFacet);
    xsdSimpleType.getFacetContents().remove(maxLengthFacet);
    xsdSimpleType.getFacetContents().add(lengthFacet);
   lengthFacet.setLexicalValue(max);
   xsdSimpleType.getFacetContents().remove(minLengthFacet);
    lengthFacet.setLexicalValue(min);
    xsdSimpleType.getFacetContents().add(lengthFacet);
    xsdSimpleType.getFacetContents().remove(maxLengthFacet);
    xsdSimpleType.getFacetContents().add(lengthFacet);
   lengthFacet.setLexicalValue(min);
   xsdSimpleType.getFacetContents().remove(maxLengthFacet);

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

int length = lengthFacet.getValue();
if (length >= 0 && lengthFacet.getRootContainer() == xsdSchema)

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

xsdLengthFacet.setLexicalValue(Integer.toString(eStructuralFeature.getLowerBound()));
xsdRestrictedTypeDefinition.getFacetContents().add(xsdLengthFacet);

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

public static XSDLengthFacet createLengthFacet(Node node)
{
 if (XSDConstants.nodeType(node) == XSDConstants.LENGTH_ELEMENT)
 {
  XSDLengthFacet xsdLengthFacet = XSDFactory.eINSTANCE.createXSDLengthFacet();
  xsdLengthFacet.setElement((Element)node);
  return xsdLengthFacet;
 }
 return null;
}

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

@Override
public Object caseXSDLengthFacet(XSDLengthFacet xsdLengthFacet)
{
 extendedMetaData.setLengthFacet(eDataType, xsdLengthFacet.getValue());
 return this;
}
@Override

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

xsdLengthFacet.setLexicalValue(Integer.toString(eStructuralFeature.getLowerBound()));
xsdRestrictedTypeDefinition.getFacetContents().add(xsdLengthFacet);

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

public static XSDLengthFacet createLengthFacet(Node node)
{
 if (XSDConstants.nodeType(node) == XSDConstants.LENGTH_ELEMENT)
 {
  XSDLengthFacet xsdLengthFacet = XSDFactory.eINSTANCE.createXSDLengthFacet();
  xsdLengthFacet.setElement((Element)node);
  return xsdLengthFacet;
 }
 return null;
}

代码示例来源:origin: geotools/geotools

public int length(XSDTypeDefinition definition) {
  try {
    XSDSimpleTypeDefinition simple = definition.getSimpleType();
    XSDLengthFacet facet = simple.getLengthFacet();
    if (facet == null) {
      return Integer.MAX_VALUE;
    }
    return Integer.parseInt(facet.getLexicalValue());
  } catch (NumberFormatException ignore) {
    return Integer.MIN_VALUE;
  }
}

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

@Override
protected void validateRestriction(XSDFixedFacet xsdFixedFacet)
{
 if (getValue() != ((XSDLengthFacet)xsdFixedFacet).getValue())
 {
  XSDDiagnostic xsdDiagnostic =
   reportConstraintViolation
    (XSDConstants.PART2,
     "length-valid-restriction",
     getElement(),
     XSDConstants.VALUE_ATTRIBUTE,
     new Object [] { new Integer(getValue()), xsdFixedFacet.getEffectiveValue(), xsdFixedFacet.getSimpleTypeDefinition().getURI() });
  xsdDiagnostic.getComponents().add(xsdFixedFacet);
 }
}

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

xsdLengthFacet.setLexicalValue(Integer.toString(length));
xsdSimpleTypeDefinition.getFacetContents().add(xsdLengthFacet);

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

@Override
public String getText(Object object)
{
 XSDLengthFacet xsdLengthFacet = ((XSDLengthFacet)object);
 String result = xsdLengthFacet.getLexicalValue();
 return result == null ? "" : result;
}

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

@Override
protected void validateRestriction(XSDFixedFacet xsdFixedFacet)
{
 if (getValue() != ((XSDLengthFacet)xsdFixedFacet).getValue())
 {
  XSDDiagnostic xsdDiagnostic =
   reportConstraintViolation
    (XSDConstants.PART2,
     "length-valid-restriction",
     getElement(),
     XSDConstants.VALUE_ATTRIBUTE,
     new Object [] { getValue(), xsdFixedFacet.getEffectiveValue(), xsdFixedFacet.getSimpleTypeDefinition().getURI() });
  xsdDiagnostic.getComponents().add(xsdFixedFacet);
 }
}

代码示例来源:origin: org.geotools.xsd/gt-core

public int length(XSDTypeDefinition definition) {
  try {
    XSDSimpleTypeDefinition simple = (XSDSimpleTypeDefinition) definition;
    XSDLengthFacet facet = simple.getLengthFacet();
    if (facet == null) {
      return Integer.MAX_VALUE;
    }
    return Integer.parseInt(facet.getLexicalValue());
  } catch (NumberFormatException ignore) {
    return Integer.MIN_VALUE;
  }
}

代码示例来源:origin: org.geotools/gt2-xml-core

XSDLengthFacet length = type.getLengthFacet();
if (list.length != length.getValue()) {

代码示例来源:origin: org.geotools/gt2-xml-xsd

public int length(XSDTypeDefinition definition) {
  try {
    XSDSimpleTypeDefinition simple = (XSDSimpleTypeDefinition) definition;
    XSDLengthFacet facet = simple.getLengthFacet();
    if (facet == null) {
      return Integer.MAX_VALUE;
    }
    return Integer.parseInt(facet.getLexicalValue());
  } catch (NumberFormatException ignore) {
    return Integer.MIN_VALUE;
  }
}

代码示例来源:origin: org.geotools.xsd/gt-core

XSDLengthFacet length = type.getLengthFacet();
if (list.length != length.getValue()) {

代码示例来源:origin: org.geotools/gt2-xml-core

public int length(XSDTypeDefinition definition) {
  try {
    XSDSimpleTypeDefinition simple = (XSDSimpleTypeDefinition) definition;
    XSDLengthFacet facet = simple.getLengthFacet();
    if (facet == null) {
      return Integer.MAX_VALUE;
    }
    return Integer.parseInt(facet.getLexicalValue());
  } catch (NumberFormatException ignore) {
    return Integer.MIN_VALUE;
  }
}

代码示例来源:origin: org.geotools/gt2-xml-xsd

if ( list.length != length.getValue() ) {

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