Tabnine Logo
MethodDefinition.putTypeNamesInMap
Code IndexAdd Tabnine to your IDE (free)

How to use
putTypeNamesInMap
method
in
org.eclipse.persistence.internal.codegen.MethodDefinition

Best Java code snippets using org.eclipse.persistence.internal.codegen.MethodDefinition.putTypeNamesInMap (Showing top 3 results out of 315)

origin: org.eclipse.persistence/org.eclipse.persistence.core

private void addTypeNamesToMap(HashMap typeNameMap) {
  putTypeNameInMap(getSuperClass(), typeNameMap);
  for (Iterator i = getInterfaces().iterator(); i.hasNext();) {
    putTypeNameInMap((String)i.next(), typeNameMap);
  }
  for (Iterator i = getAttributes().iterator(); i.hasNext();) {
    ((AttributeDefinition)i.next()).putTypeNamesInMap(typeNameMap);
  }
  for (Iterator i = getMethods().iterator(); i.hasNext();) {
    ((MethodDefinition)i.next()).putTypeNamesInMap(typeNameMap);
  }
}
origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

private void addTypeNamesToMap(HashMap typeNameMap) {
  putTypeNameInMap(getSuperClass(), typeNameMap);
  for (Iterator i = getInterfaces().iterator(); i.hasNext();) {
    putTypeNameInMap((String)i.next(), typeNameMap);
  }
  for (Iterator i = getAttributes().iterator(); i.hasNext();) {
    ((AttributeDefinition)i.next()).putTypeNamesInMap(typeNameMap);
  }
  for (Iterator i = getMethods().iterator(); i.hasNext();) {
    ((MethodDefinition)i.next()).putTypeNamesInMap(typeNameMap);
  }
}
origin: com.haulmont.thirdparty/eclipselink

private void addTypeNamesToMap(HashMap typeNameMap) {
  putTypeNameInMap(getSuperClass(), typeNameMap);
  for (Iterator i = getInterfaces().iterator(); i.hasNext();) {
    putTypeNameInMap((String)i.next(), typeNameMap);
  }
  for (Iterator i = getAttributes().iterator(); i.hasNext();) {
    ((AttributeDefinition)i.next()).putTypeNamesInMap(typeNameMap);
  }
  for (Iterator i = getMethods().iterator(); i.hasNext();) {
    ((MethodDefinition)i.next()).putTypeNamesInMap(typeNameMap);
  }
}
org.eclipse.persistence.internal.codegenMethodDefinitionputTypeNamesInMap

Javadoc

Used for calculating imports. @see org.eclipse.persistence.internal.codegen.ClassDefinition#calculateImports()

Popular methods of MethodDefinition

  • adjustExceptions
  • adjustLine
    Parses the line, removing the package name for each type (and adding the appropriate import) if the
  • adjustLines
  • adjustReturnType
  • adjustTypeName
  • adjustTypeNames
  • argumentsEqual
  • exceptionsEqual
  • getAccessLevel
  • getArgumentNames
  • getArgumentTypeNames
  • getArgumentTypes
  • getArgumentTypeNames,
  • getArgumentTypes,
  • getExceptions,
  • getLines,
  • getName,
  • getReturnType,
  • isAbstract,
  • isConstructor,
  • parseForTypeNames,
  • putTypeNameInMap

Popular in Java

  • Running tasks concurrently on multiple threads
  • getSupportFragmentManager (FragmentActivity)
  • getApplicationContext (Context)
  • getSystemService (Context)
  • Date (java.sql)
    A class which can consume and produce dates in SQL Date format. Dates are represented in SQL as yyyy
  • SQLException (java.sql)
    An exception that indicates a failed JDBC operation. It provides the following information about pro
  • ArrayList (java.util)
    ArrayList is an implementation of List, backed by an array. All optional operations including adding
  • List (java.util)
    An ordered collection (also known as a sequence). The user of this interface has precise control ove
  • TreeMap (java.util)
    Walk the nodes of the tree left-to-right or right-to-left. Note that in descending iterations, next
  • BoxLayout (javax.swing)
  • Top 12 Jupyter Notebook extensions
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