Codota Logo
AttributeDefinition.putTypeNamesInMap
Code IndexAdd Codota to your IDE (free)

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

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

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
OutputStreamWriter o =
  • Codota IconOutputStream out;new OutputStreamWriter(out)
  • Codota IconOutputStream out;String charsetName;new OutputStreamWriter(out, charsetName)
  • Codota IconHttpURLConnection connection;new OutputStreamWriter(connection.getOutputStream())
  • Smart code suggestions by Codota
}
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.codegenAttributeDefinitionputTypeNamesInMap

Javadoc

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

Popular methods of AttributeDefinition

  • adjustInitialValue
    Parses the initial value, removing the package name for each type (and adding the appropriate import
  • adjustTypeName
  • adjustTypeNames
  • getInitialValue
  • getName
  • getTypeName
  • parseForTypeNames
  • putTypeNameInMap
  • setInitialValue
  • write

Popular in Java

  • Creating JSON documents from java classes using gson
  • getApplicationContext (Context)
  • getContentResolver (Context)
  • getResourceAsStream (ClassLoader)
    Returns a stream for the resource with the specified name. See #getResource(String) for a descriptio
  • Rectangle (java.awt)
    A Rectangle specifies an area in a coordinate space that is enclosed by the Rectangle object's top-
  • ServerSocket (java.net)
    This class represents a server-side socket that waits for incoming client connections. A ServerSocke
  • Permission (java.security)
    Abstract class for representing access to a system resource. All permissions have a name (whose inte
  • SQLException (java.sql)
    An exception that indicates a failed JDBC operation. It provides the following information about pro
  • Comparator (java.util)
    A Comparator is used to compare two objects to determine their ordering with respect to each other.
  • ZipFile (java.util.zip)
    This class provides random read access to a zip file. You pay more to read the zip file's central di
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