congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
ClassDefinition.adjustTypeName
Code IndexAdd Tabnine to your IDE (free)

How to use
adjustTypeName
method
in
org.eclipse.persistence.internal.codegen.ClassDefinition

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

origin: com.haulmont.thirdparty/eclipselink

private void adjustTypeNames(HashMap typeNameMap) {
  setSuperClass(adjustTypeName(getSuperClass(), typeNameMap));
  for (Iterator i = new Vector(getInterfaces()).iterator(); i.hasNext();) {
    String interfaceName = (String)i.next();
    replaceInterface(interfaceName, adjustTypeName(interfaceName, typeNameMap));
  }
  for (Iterator i = getAttributes().iterator(); i.hasNext();) {
    ((AttributeDefinition)i.next()).adjustTypeNames(typeNameMap);
  }
  for (Iterator i = getMethods().iterator(); i.hasNext();) {
    ((MethodDefinition)i.next()).adjustTypeNames(typeNameMap);
  }
}
origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence

private void adjustTypeNames(HashMap typeNameMap) {
  setSuperClass(adjustTypeName(getSuperClass(), typeNameMap));
  for (Iterator i = new Vector(getInterfaces()).iterator(); i.hasNext();) {
    String interfaceName = (String)i.next();
    replaceInterface(interfaceName, adjustTypeName(interfaceName, typeNameMap));
  }
  for (Iterator i = getAttributes().iterator(); i.hasNext();) {
    ((AttributeDefinition)i.next()).adjustTypeNames(typeNameMap);
  }
  for (Iterator i = getMethods().iterator(); i.hasNext();) {
    ((MethodDefinition)i.next()).adjustTypeNames(typeNameMap);
  }
}
origin: org.eclipse.persistence/org.eclipse.persistence.core

private void adjustTypeNames(HashMap typeNameMap) {
  setSuperClass(adjustTypeName(getSuperClass(), typeNameMap));
  for (Iterator i = new Vector(getInterfaces()).iterator(); i.hasNext();) {
    String interfaceName = (String)i.next();
    replaceInterface(interfaceName, adjustTypeName(interfaceName, typeNameMap));
  }
  for (Iterator i = getAttributes().iterator(); i.hasNext();) {
    ((AttributeDefinition)i.next()).adjustTypeNames(typeNameMap);
  }
  for (Iterator i = getMethods().iterator(); i.hasNext();) {
    ((MethodDefinition)i.next()).adjustTypeNames(typeNameMap);
  }
}
org.eclipse.persistence.internal.codegenClassDefinitionadjustTypeName

Popular methods of ClassDefinition

  • <init>
  • addImport
    The importStatement should be of the form "{packageName}.{shortName or '*'}"
  • addImports
  • addMethod
  • addTypeNamesToMap
  • adjustTypeNames
  • getAttributes
  • getImports
  • getInnerClasses
  • getInterfaces
  • getMethods
  • getName
  • getMethods,
  • getName,
  • getPackageName,
  • getSuperClass,
  • getType,
  • isInterface,
  • putTypeNameInMap,
  • replaceInterface,
  • setComment

Popular in Java

  • Making http requests using okhttp
  • getSystemService (Context)
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • findViewById (Activity)
  • VirtualMachine (com.sun.tools.attach)
    A Java virtual machine. A VirtualMachine represents a Java virtual machine to which this Java vir
  • FileInputStream (java.io)
    An input stream that reads bytes from a file. File file = ...finally if (in != null) in.clos
  • BitSet (java.util)
    The BitSet class implements abit array [http://en.wikipedia.org/wiki/Bit_array]. Each element is eit
  • Callable (java.util.concurrent)
    A task that returns a result and may throw an exception. Implementors define a single method with no
  • ExecutorService (java.util.concurrent)
    An Executor that provides methods to manage termination and methods that can produce a Future for tr
  • Manifest (java.util.jar)
    The Manifest class is used to obtain attribute information for a JarFile and its entries.
  • Top 12 Jupyter Notebook Extensions
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyStudentsTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now