Tabnine Logo
EStructuralFeature.isOrdered
Code IndexAdd Tabnine to your IDE (free)

How to use
isOrdered
method
in
org.eclipse.emf.ecore.EStructuralFeature

Best Java code snippets using org.eclipse.emf.ecore.EStructuralFeature.isOrdered (Showing top 13 results out of 315)

origin: org.eclipse.emf/cdo

@Override
protected EList<?> createList(EStructuralFeature eStructuralFeature)
{
 if (isMap(eStructuralFeature))
 {
  return createMap(eStructuralFeature);
 }
 if (!eStructuralFeature.isOrdered())
 {
  return createUnorderedList(eStructuralFeature);
 }
 return super.createList(eStructuralFeature);
}
origin: com.b2international.snowowl/org.eclipse.emf.cdo.common

private boolean cleanupWithNewDelta(CDOFeatureDelta featureDelta)
 if (!feature.isOrdered()) {
   return true;
origin: org.eclipse.emf/org.eclipse.emf.ecore

eOperation.setName(getAccessor);
eOperation.setUpperBound(eStructuralFeature.getUpperBound());
eOperation.setOrdered(eStructuralFeature.isOrdered());
eOperation.setUnique(eStructuralFeature.isUnique());
eOperation.setEType(eType);
origin: at.bestsolution.efxclipse.eclipse/org.eclipse.emf.ecore

eOperation.setName(getAccessor);
eOperation.setUpperBound(eStructuralFeature.getUpperBound());
eOperation.setOrdered(eStructuralFeature.isOrdered());
eOperation.setUnique(eStructuralFeature.isUnique());
eOperation.setEType(eType);
origin: com.b2international.snowowl/org.eclipse.emf.cdo.common

public CDOList getList(EStructuralFeature feature, int size)
{
 int featureIndex = getFeatureIndex(feature);
 CDOList list = (CDOList)getValue(featureIndex);
 if (list == null && size != -1)
 {
  list = CDOListFactory.DEFAULT.createList(size, 0, 0, feature.isOrdered());
  synchronized (this)
  {
   CDOPermission permission = getPermission();
   if (permission != CDOPermission.WRITE)
   {
    setPermission(CDOPermission.WRITE);
   }
   try
   {
    setValue(featureIndex, list);
   }
   finally
   {
    if (permission != CDOPermission.WRITE)
    {
     setPermission(permission);
    }
   }
  }
 }
 return list;
}
origin: com.b2international.snowowl/org.eclipse.emf.cdo.common

checkNoProxies(dirtyList);
if (!feature.isOrdered())
origin: org.eclipse.xsd/org.eclipse.xsd

if (eStructuralFeature.isMany() && !eStructuralFeature.isOrdered())
origin: org.eclipse/org.eclipse.emf.codegen.ecore

if (!eStructuralFeature.isOrdered())
origin: org.eclipse.emf/org.eclipse.emf.codegen.ecore

if (!eStructuralFeature.isOrdered())
origin: org.eclipse/org.eclipse.xsd

if (eStructuralFeature.isMany() && !eStructuralFeature.isOrdered())
origin: org.eclipse/org.eclipse.xsd

if (eStructuralFeature.isMany() && !eStructuralFeature.isOrdered())
origin: org.eclipse.xsd/org.eclipse.xsd

if (eStructuralFeature.isMany() && !eStructuralFeature.isOrdered())
origin: com.b2international.snowowl/org.eclipse.emf.cdo.common

InternalCDOList list = (InternalCDOList)getListFactory().createList(size, size, referenceChunk, feature.isOrdered());
for (int j = 0; j < referenceChunk; j++)
org.eclipse.emf.ecoreEStructuralFeatureisOrdered

Popular methods of EStructuralFeature

  • getName
  • isMany
  • getEType
  • getEContainingClass
    Returns the value of the 'EContaining Class' container reference. It is bidirectional and its opposi
  • isUnsettable
    Returns the value of the 'Unsettable' attribute. An unsettable feature explicitly models the state o
  • isChangeable
    Returns the value of the 'Changeable' attribute. The default value is "true".
  • isDerived
    Returns the value of the 'Derived' attribute. A derived feature typically computes its value from th
  • isTransient
    Returns the value of the 'Transient' attribute.
  • getDefaultValue
    Returns the value of the 'Default Value' attribute. It represents the default value that feature mus
  • getUpperBound
  • getDefaultValueLiteral
    Returns the value of the 'Default Value Literal' attribute. It represents the serialized form of the
  • getEGenericType
  • getDefaultValueLiteral,
  • getEGenericType,
  • isUnique,
  • getFeatureID,
  • getEAnnotation,
  • getLowerBound,
  • setChangeable,
  • eIsProxy,
  • setUpperBound

Popular in Java

  • Running tasks concurrently on multiple threads
  • getContentResolver (Context)
  • getSharedPreferences (Context)
  • getResourceAsStream (ClassLoader)
  • FileNotFoundException (java.io)
    Thrown when a file specified by a program cannot be found.
  • InputStream (java.io)
    A readable source of bytes.Most clients will use input streams that read data from the file system (
  • ServerSocket (java.net)
    This class represents a server-side socket that waits for incoming client connections. A ServerSocke
  • HttpServletRequest (javax.servlet.http)
    Extends the javax.servlet.ServletRequest interface to provide request information for HTTP servlets.
  • XPath (javax.xml.xpath)
    XPath provides access to the XPath evaluation environment and expressions. Evaluation of XPath Expr
  • LoggerFactory (org.slf4j)
    The LoggerFactory is a utility class producing Loggers for various logging APIs, most notably for lo
  • Best IntelliJ 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