Codota Logo
EStructuralFeature.isOrdered
Code IndexAdd Codota 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)

  • Common ways to obtain EStructuralFeature
private void myMethod () {
EStructuralFeature e =
  • Codota IconItemProviderAdapter zuper;zuper.getChildFeature(object, child)
  • Codota IconEClass eClass;String featureName;eClass.getEStructuralFeature(featureName)
  • Codota IconFeatureMap.Entry entry;entry.getEStructuralFeature()
  • Smart code suggestions by Codota
}
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

  • Start an intent from android
  • getResourceAsStream (ClassLoader)
  • scheduleAtFixedRate (Timer)
  • putExtra (Intent)
  • FileReader (java.io)
    A specialized Reader that reads from a file in the file system. All read requests made by calling me
  • PrintWriter (java.io)
    Prints formatted representations of objects to a text-output stream. This class implements all of th
  • SecureRandom (java.security)
    This class generates cryptographically secure pseudo-random numbers. It is best to invoke SecureRand
  • Date (java.util)
    A specific moment in time, with millisecond precision. Values typically come from System#currentTime
  • JTextField (javax.swing)
  • FileUtils (org.apache.commons.io)
    General file manipulation utilities. Facilities are provided in the following areas: * writing to a
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now