Codota Logo
ClassDescriptorBuilderImpl.<init>
Code IndexAdd Codota to your IDE (free)

How to use
com.jporm.annotation.mapper.clazz.ClassDescriptorBuilderImpl
constructor

Best Java code snippets using com.jporm.annotation.mapper.clazz.ClassDescriptorBuilderImpl.<init> (Showing top 2 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
List l =
  • Codota Iconnew LinkedList()
  • Codota IconCollections.emptyList()
  • Codota Iconnew ArrayList()
  • Smart code suggestions by Codota
}
origin: com.jporm/jpo-commons-core

public synchronized <BEAN> void register(final Class<BEAN> clazz) {
  try {
    if (!containsTool(clazz)) {
      logger.debug("register new class: " + clazz.getName());
      final ClassDescriptor<BEAN> classDescriptor = new ClassDescriptorBuilderImpl<>(clazz).build();
      final Persistor<BEAN> ormPersistor = persistorFactory.generate(classDescriptor);
      final ClassTool<BEAN> classTool = new ClassToolImpl<>(classDescriptor, ormPersistor);
      classToolMap.put(clazz, classTool);
    }
  } catch (final Exception e) {
    throw new JpoException(e);
  }
}
origin: com.jporm/jporm-core

@Override
public synchronized <BEAN> JPOConfig register(final Class<BEAN> clazz) {
  try {
    if (!getServiceCatalog().getClassToolMap().containsTool(clazz)) {
      logger.debug("register new class: " + clazz.getName()); //$NON-NLS-1$
      final ClassDescriptor<BEAN> classDescriptor = new ClassDescriptorBuilderImpl<BEAN>(clazz, getServiceCatalog().getTypeFactory()).build();
      final Persistor<BEAN> ormPersistor =  new PersistorGeneratorImpl<BEAN>(classDescriptor, getTypeFactory()).generate();
      ClassTool<BEAN> classTool = new ClassToolImpl<BEAN>(classDescriptor, ormPersistor);
      serviceCatalog.getClassToolMap().put(clazz, classTool);
    }
  } catch (final Exception e) {
    throw new JpoException(e);
  }
  return this;
}
com.jporm.annotation.mapper.clazzClassDescriptorBuilderImpl<init>

Popular methods of ClassDescriptorBuilderImpl

  • build
  • buildClassField
  • buildPropertyFieldWrapper
  • findAnnotation
  • getGenericClass
  • getGetter
  • getSetter
  • initializeClassFields
  • initializeColumnNames
  • isOptional
  • isValidGetter
  • isValidSetter
  • isValidGetter,
  • isValidSetter,
  • setColumnInfo,
  • setGeneratorInfo,
  • setIdentifier,
  • setIgnored,
  • setJsonInfo,
  • setVersionInfo

Popular in Java

  • Parsing JSON documents to java classes using gson
  • getSharedPreferences (Context)
  • addToBackStack (FragmentTransaction)
  • scheduleAtFixedRate (Timer)
    Schedules the specified task for repeated fixed-rate execution, beginning after the specified delay.
  • BufferedWriter (java.io)
    Wraps an existing Writer and buffers the output. Expensive interaction with the underlying reader is
  • OutputStream (java.io)
    A writable sink for bytes.Most clients will use output streams that write data to the file system (
  • ArrayList (java.util)
    Resizable-array implementation of the List interface. Implements all optional list operations, and p
  • List (java.util)
    A List is a collection which maintains an ordering for its elements. Every element in the List has a
  • Notification (javax.management)
  • JCheckBox (javax.swing)
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