congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
JvmGenericType.setStrictFloatingPoint
Code IndexAdd Tabnine to your IDE (free)

How to use
setStrictFloatingPoint
method
in
org.eclipse.xtext.common.types.JvmGenericType

Best Java code snippets using org.eclipse.xtext.common.types.JvmGenericType.setStrictFloatingPoint (Showing top 13 results out of 315)

origin: org.eclipse.xtend/org.eclipse.xtend.core

@Override
public void setStrictFloatingPoint(final boolean isStrictFloatingPoint) {
 this.checkMutable();
 this.getDelegate().setStrictFloatingPoint(isStrictFloatingPoint);
}

origin: org.eclipse.xtend/org.eclipse.xtend.core

@Override
public void setStrictFloatingPoint(final boolean isStrictFloatingPoint) {
 this.checkMutable();
 this.getDelegate().setStrictFloatingPoint(isStrictFloatingPoint);
}

origin: org.eclipse.xtext.common/types

result.setStrictFloatingPoint(Modifier.isStrict(clazz.getModifiers()));
setTypeModifiers(clazz, result);
setVisibility(clazz, result);
origin: org.eclipse.xtext/org.eclipse.xtext.common.types

result.setStrictFloatingPoint(Modifier.isStrict(clazz.getModifiers()));
setTypeModifiers(clazz, result);
setVisibility(clazz, result);
origin: org.eclipse.xtext/org.eclipse.xtext.common.types

generic.setStrictFloatingPoint((access & ACC_STRICT) != 0);
origin: org.eclipse.xtend/org.eclipse.xtend.core

protected void initialize(XtendInterface source, JvmGenericType inferredJvmType) {
  inferredJvmType.setVisibility(source.getVisibility());
  inferredJvmType.setStatic(source.isStatic() && !isTopLevel(source));
  inferredJvmType.setAbstract(true);
  inferredJvmType.setStrictFloatingPoint(source.isStrictFloatingPoint());
  translateAnnotationsTo(source.getAnnotations(), inferredJvmType);
  for (JvmTypeReference intf : source.getExtends()) {
    inferredJvmType.getSuperTypes().add(jvmTypesBuilder.cloneWithProxies(intf));
  }
  fixTypeParameters(inferredJvmType);
  for (XtendMember member : source.getMembers()) {
    if (member instanceof XtendField
        || (member instanceof XtendFunction && ((XtendFunction) member).getName() != null)) {
      transform(member, inferredJvmType, false);
    }
  }
  jvmTypesBuilder.copyDocumentationTo(source, inferredJvmType);
  nameClashResolver.resolveNameClashes(inferredJvmType);
}

origin: io.sarl.lang/io.sarl.lang

innerType.setVisibility(JvmVisibility.PUBLIC);
innerType.setStatic(true);
innerType.setStrictFloatingPoint(false);
innerType.setFinal(false);
final String innerTypeName = Capacity.ContextAwareCapacityWrapper.class.getSimpleName();
origin: io.sarl.lang/io.sarl.lang

setVisibility(inferredJvmType, source);
inferredJvmType.setStatic(false);
inferredJvmType.setStrictFloatingPoint(false);
inferredJvmType.setFinal(false);
origin: io.sarl.lang/io.sarl.lang

inferredJvmType.setStrictFloatingPoint(false);
setVisibility(inferredJvmType, source);
final boolean isAbstract = source.isAbstract() || Utils.hasAbstractMember(source);
origin: org.eclipse.xtend/org.eclipse.xtend.core

inferredJvmType.setStrictFloatingPoint(source.isStrictFloatingPoint());
if (!inferredJvmType.isAbstract()) {
  inferredJvmType.setFinal(source.isFinal());
origin: io.sarl.lang/io.sarl.lang

inferredJvmType.setStatic(false);
inferredJvmType.setAbstract(false);
inferredJvmType.setStrictFloatingPoint(false);
if (!inferredJvmType.isAbstract()) {
  inferredJvmType.setFinal(source.isFinal());
origin: io.sarl.lang/io.sarl.lang

final boolean isAbstract = source.isAbstract() || Utils.hasAbstractMember(source);
inferredJvmType.setAbstract(isAbstract);
inferredJvmType.setStrictFloatingPoint(false);
inferredJvmType.setFinal(!isAbstract && source.isFinal());
origin: io.sarl.lang/io.sarl.lang

final boolean isAbstract = source.isAbstract() || Utils.hasAbstractMember(source);
inferredJvmType.setAbstract(isAbstract);
inferredJvmType.setStrictFloatingPoint(false);
inferredJvmType.setFinal(!isAbstract && source.isFinal());
org.eclipse.xtext.common.typesJvmGenericTypesetStrictFloatingPoint

Javadoc

Sets the value of the ' org.eclipse.xtext.common.types.JvmGenericType#isStrictFloatingPoint' attribute.

Popular methods of JvmGenericType

  • getMembers
  • isInterface
    Returns the value of the 'Interface' attribute. If the meaning of the 'Interface' attribute isn't cl
  • getSuperTypes
  • getTypeParameters
  • getDeclaredConstructors
  • setAbstract
  • setInterface
    Sets the value of the ' org.eclipse.xtext.common.types.JvmGenericType#isInterface' attribute.
  • setPackageName
  • setSimpleName
  • setVisibility
  • getAllFeatures
  • getSimpleName
  • getAllFeatures,
  • getSimpleName,
  • isAbstract,
  • setFinal,
  • setStatic,
  • getDeclaredFields,
  • getDeclaredOperations,
  • getIdentifier,
  • isFinal

Popular in Java

  • Running tasks concurrently on multiple threads
  • notifyDataSetChanged (ArrayAdapter)
  • scheduleAtFixedRate (Timer)
  • addToBackStack (FragmentTransaction)
  • Runnable (java.lang)
    Represents a command that can be executed. Often used to run code in a different Thread.
  • ServerSocket (java.net)
    This class represents a server-side socket that waits for incoming client connections. A ServerSocke
  • ArrayList (java.util)
    ArrayList is an implementation of List, backed by an array. All optional operations including adding
  • ReentrantLock (java.util.concurrent.locks)
    A reentrant mutual exclusion Lock with the same basic behavior and semantics as the implicit monitor
  • Manifest (java.util.jar)
    The Manifest class is used to obtain attribute information for a JarFile and its entries.
  • Runner (org.openjdk.jmh.runner)
  • 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