code
stringlengths
23
201k
docstring
stringlengths
17
96.2k
func_name
stringlengths
0
235
language
stringclasses
1 value
repo
stringlengths
8
72
path
stringlengths
11
317
url
stringlengths
57
377
license
stringclasses
7 values
@Override protected String getCompileTaskName() { return "compileJava"; }
Basic functional tests @author Steve Ebersole
getCompileTaskName
java
hibernate/hibernate-orm
tooling/hibernate-gradle-plugin/src/test/java/org/hibernate/orm/tooling/gradle/ModuleInfoProjectTests.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/hibernate-gradle-plugin/src/test/java/org/hibernate/orm/tooling/gradle/ModuleInfoProjectTests.java
Apache-2.0
@Test @Override public void testEnhancement(@TempDir Path projectDir) throws Exception { super.testEnhancement( projectDir ); }
Basic functional tests @author Steve Ebersole
testEnhancement
java
hibernate/hibernate-orm
tooling/hibernate-gradle-plugin/src/test/java/org/hibernate/orm/tooling/gradle/ModuleInfoProjectTests.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/hibernate-gradle-plugin/src/test/java/org/hibernate/orm/tooling/gradle/ModuleInfoProjectTests.java
Apache-2.0
@Test @Override public void testEnhancementUpToDate(@TempDir Path projectDir) throws Exception { super.testEnhancementUpToDate( projectDir ); }
Basic functional tests @author Steve Ebersole
testEnhancementUpToDate
java
hibernate/hibernate-orm
tooling/hibernate-gradle-plugin/src/test/java/org/hibernate/orm/tooling/gradle/ModuleInfoProjectTests.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/hibernate-gradle-plugin/src/test/java/org/hibernate/orm/tooling/gradle/ModuleInfoProjectTests.java
Apache-2.0
public void execute() { getLog().debug(STARTING_EXECUTION_OF_ENHANCE_MOJO); processParameters(); assembleSourceSet(); createEnhancer(); discoverTypes(); performEnhancement(); getLog().debug(ENDING_EXECUTION_OF_ENHANCE_MOJO); }
Maven mojo for performing build-time enhancement of entity objects.
execute
java
hibernate/hibernate-orm
tooling/hibernate-maven-plugin/src/main/java/org/hibernate/orm/tooling/maven/HibernateEnhancerMojo.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/hibernate-maven-plugin/src/main/java/org/hibernate/orm/tooling/maven/HibernateEnhancerMojo.java
Apache-2.0
private void processParameters() { if (!enableLazyInitialization) { getLog().warn(ENABLE_LAZY_INITIALIZATION_DEPRECATED); } if (!enableDirtyTracking) { getLog().warn(ENABLE_DIRTY_TRACKING_DEPRECATED); } if (fileSets == null) { fileSets = new FileSet[1]; fileSets[0] = new FileSet(); fileSets[0]....
Maven mojo for performing build-time enhancement of entity objects.
processParameters
java
hibernate/hibernate-orm
tooling/hibernate-maven-plugin/src/main/java/org/hibernate/orm/tooling/maven/HibernateEnhancerMojo.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/hibernate-maven-plugin/src/main/java/org/hibernate/orm/tooling/maven/HibernateEnhancerMojo.java
Apache-2.0
private void assembleSourceSet() { getLog().debug(STARTING_ASSEMBLY_OF_SOURCESET); for (FileSet fileSet : fileSets) { addFileSetToSourceSet(fileSet); } getLog().debug(ENDING_ASSEMBLY_OF_SOURCESET); }
Maven mojo for performing build-time enhancement of entity objects.
assembleSourceSet
java
hibernate/hibernate-orm
tooling/hibernate-maven-plugin/src/main/java/org/hibernate/orm/tooling/maven/HibernateEnhancerMojo.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/hibernate-maven-plugin/src/main/java/org/hibernate/orm/tooling/maven/HibernateEnhancerMojo.java
Apache-2.0
private void addFileSetToSourceSet(FileSet fileSet) { getLog().debug(PROCESSING_FILE_SET); String directory = fileSet.getDirectory(); FileSetManager fileSetManager = new FileSetManager(); File baseDir = classesDirectory; if (directory != null && classesDirectory != null) { baseDir = new File(directory); ...
Maven mojo for performing build-time enhancement of entity objects.
addFileSetToSourceSet
java
hibernate/hibernate-orm
tooling/hibernate-maven-plugin/src/main/java/org/hibernate/orm/tooling/maven/HibernateEnhancerMojo.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/hibernate-maven-plugin/src/main/java/org/hibernate/orm/tooling/maven/HibernateEnhancerMojo.java
Apache-2.0
private ClassLoader createClassLoader() { getLog().debug(CREATE_URL_CLASSLOADER_FOR_FOLDER.formatted(classesDirectory)) ; List<URL> urls = new ArrayList<>(); try { urls.add(classesDirectory.toURI().toURL()); } catch (MalformedURLException e) { getLog().error(UNEXPECTED_ERROR_WHILE_CONSTRUCTING_CLASSLOAD...
Maven mojo for performing build-time enhancement of entity objects.
createClassLoader
java
hibernate/hibernate-orm
tooling/hibernate-maven-plugin/src/main/java/org/hibernate/orm/tooling/maven/HibernateEnhancerMojo.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/hibernate-maven-plugin/src/main/java/org/hibernate/orm/tooling/maven/HibernateEnhancerMojo.java
Apache-2.0
private EnhancementContext createEnhancementContext() { getLog().debug(CREATE_ENHANCEMENT_CONTEXT) ; return new EnhancementContext( createClassLoader(), enableAssociationManagement, enableDirtyTracking, enableLazyInitialization, enableExtendedEnhancement); }
Maven mojo for performing build-time enhancement of entity objects.
createEnhancementContext
java
hibernate/hibernate-orm
tooling/hibernate-maven-plugin/src/main/java/org/hibernate/orm/tooling/maven/HibernateEnhancerMojo.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/hibernate-maven-plugin/src/main/java/org/hibernate/orm/tooling/maven/HibernateEnhancerMojo.java
Apache-2.0
private void createEnhancer() { getLog().debug(CREATE_BYTECODE_ENHANCER) ; enhancer = BytecodeProviderInitiator .buildDefaultBytecodeProvider() .getEnhancer(createEnhancementContext()); }
Maven mojo for performing build-time enhancement of entity objects.
createEnhancer
java
hibernate/hibernate-orm
tooling/hibernate-maven-plugin/src/main/java/org/hibernate/orm/tooling/maven/HibernateEnhancerMojo.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/hibernate-maven-plugin/src/main/java/org/hibernate/orm/tooling/maven/HibernateEnhancerMojo.java
Apache-2.0
private void discoverTypes() { getLog().debug(STARTING_TYPE_DISCOVERY) ; for (File classFile : sourceSet) { discoverTypesForClass(classFile); } getLog().debug(ENDING_TYPE_DISCOVERY) ; }
Maven mojo for performing build-time enhancement of entity objects.
discoverTypes
java
hibernate/hibernate-orm
tooling/hibernate-maven-plugin/src/main/java/org/hibernate/orm/tooling/maven/HibernateEnhancerMojo.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/hibernate-maven-plugin/src/main/java/org/hibernate/orm/tooling/maven/HibernateEnhancerMojo.java
Apache-2.0
private void discoverTypesForClass(File classFile) { getLog().debug(TRYING_TO_DISCOVER_TYPES_FOR_CLASS_FILE.formatted(classFile)); try { enhancer.discoverTypes( determineClassName(classFile), Files.readAllBytes( classFile.toPath())); getLog().info(SUCCESFULLY_DISCOVERED_TYPES_FOR_CLASS_FILE.formatte...
Maven mojo for performing build-time enhancement of entity objects.
discoverTypesForClass
java
hibernate/hibernate-orm
tooling/hibernate-maven-plugin/src/main/java/org/hibernate/orm/tooling/maven/HibernateEnhancerMojo.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/hibernate-maven-plugin/src/main/java/org/hibernate/orm/tooling/maven/HibernateEnhancerMojo.java
Apache-2.0
private String determineClassName(File classFile) { getLog().debug(DETERMINE_CLASS_NAME_FOR_FILE.formatted(classFile)); String classFilePath = classFile.getAbsolutePath(); String classesDirectoryPath = classesDirectory.getAbsolutePath(); return classFilePath.substring( classesDirectoryPath.length() + 1, ...
Maven mojo for performing build-time enhancement of entity objects.
determineClassName
java
hibernate/hibernate-orm
tooling/hibernate-maven-plugin/src/main/java/org/hibernate/orm/tooling/maven/HibernateEnhancerMojo.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/hibernate-maven-plugin/src/main/java/org/hibernate/orm/tooling/maven/HibernateEnhancerMojo.java
Apache-2.0
private void performEnhancement() { getLog().debug(STARTING_CLASS_ENHANCEMENT) ; for (File classFile : sourceSet) { long lastModified = classFile.lastModified(); enhanceClass(classFile); final boolean timestampReset = classFile.setLastModified( lastModified ); if ( !timestampReset ) { getLog().debug...
Maven mojo for performing build-time enhancement of entity objects.
performEnhancement
java
hibernate/hibernate-orm
tooling/hibernate-maven-plugin/src/main/java/org/hibernate/orm/tooling/maven/HibernateEnhancerMojo.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/hibernate-maven-plugin/src/main/java/org/hibernate/orm/tooling/maven/HibernateEnhancerMojo.java
Apache-2.0
private void enhanceClass(File classFile) { getLog().debug(TRYING_TO_ENHANCE_CLASS_FILE.formatted(classFile)); try { byte[] newBytes = enhancer.enhance( determineClassName(classFile), Files.readAllBytes(classFile.toPath())); if (newBytes != null) { writeByteCodeToFile(newBytes, classFile); g...
Maven mojo for performing build-time enhancement of entity objects.
enhanceClass
java
hibernate/hibernate-orm
tooling/hibernate-maven-plugin/src/main/java/org/hibernate/orm/tooling/maven/HibernateEnhancerMojo.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/hibernate-maven-plugin/src/main/java/org/hibernate/orm/tooling/maven/HibernateEnhancerMojo.java
Apache-2.0
private void writeByteCodeToFile(byte[] bytes, File file) { getLog().debug(WRITING_BYTE_CODE_TO_FILE.formatted(file)); if (clearFile(file)) { try { Files.write( file.toPath(), bytes); getLog().debug(AMOUNT_BYTES_WRITTEN_TO_FILE.formatted(bytes.length, file)); } catch (FileNotFoundException e) { ...
Maven mojo for performing build-time enhancement of entity objects.
writeByteCodeToFile
java
hibernate/hibernate-orm
tooling/hibernate-maven-plugin/src/main/java/org/hibernate/orm/tooling/maven/HibernateEnhancerMojo.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/hibernate-maven-plugin/src/main/java/org/hibernate/orm/tooling/maven/HibernateEnhancerMojo.java
Apache-2.0
private boolean clearFile(File file) { getLog().debug(TRYING_TO_CLEAR_FILE.formatted(file)); boolean success = false; if ( file.delete() ) { try { if ( !file.createNewFile() ) { getLog().error(UNABLE_TO_CREATE_FILE.formatted(file)); } else { getLog().info(SUCCESFULLY_CLEARED_FILE.formatte...
Maven mojo for performing build-time enhancement of entity objects.
clearFile
java
hibernate/hibernate-orm
tooling/hibernate-maven-plugin/src/main/java/org/hibernate/orm/tooling/maven/HibernateEnhancerMojo.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/hibernate-maven-plugin/src/main/java/org/hibernate/orm/tooling/maven/HibernateEnhancerMojo.java
Apache-2.0
public static void writeFile(Metamodel entity, Context context) { try { String metaModelPackage = entity.getPackageName(); // need to generate the body first, since this will also update // the required imports which need to be written out first String body = generateBody( entity, context ).toString(); ...
Helper class to write the actual metamodel class using the {@link javax.annotation.processing.Filer} API. @author Emmanuel Bernard @author Hardy Ferentschik
writeFile
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/ClassWriter.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/ClassWriter.java
Apache-2.0
private static StringBuffer generateBody(Metamodel entity, Context context) { final StringWriter sw = new StringWriter(); try ( PrintWriter pw = new PrintWriter(sw) ) { pw.println( entity.javadoc() ); if ( context.addDependentAnnotation() && entity.isInjectable() ) { pw.println( writeScopeAnnotation( en...
Generate everything after import statements. @param entity The meta entity for which to write the body @param context The processing context @return body content
generateBody
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/ClassWriter.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/ClassWriter.java
Apache-2.0
private static void printAnnotation(AnnotationMirror annotation, PrintWriter pw) { pw.print('@'); final TypeElement type = (TypeElement) annotation.getAnnotationType().asElement(); pw.print( type.getQualifiedName().toString() ); var elementValues = annotation.getElementValues(); if (!elementValues.isEmpty()) ...
Generate everything after import statements. @param entity The meta entity for which to write the body @param context The processing context @return body content
printAnnotation
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/ClassWriter.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/ClassWriter.java
Apache-2.0
private static void printAnnotationValue(PrintWriter pw, AnnotationValue value) { final Object argument = value.getValue(); if (argument instanceof VariableElement variable) { pw.print( variable.getEnclosingElement() ); pw.print('.'); pw.print( variable.getSimpleName().toString() ); } else if (argument...
Generate everything after import statements. @param entity The meta entity for which to write the body @param context The processing context @return body content
printAnnotationValue
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/ClassWriter.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/ClassWriter.java
Apache-2.0
private static void printClassDeclaration(Metamodel entity, PrintWriter pw) { if ( isMemberType( entity.getElement() ) ) { final Set<Modifier> modifiers = entity.getElement().getModifiers(); if ( modifiers.contains( Modifier.PUBLIC ) ) { pw.print( "public " ); } else if ( modifiers.contains( Modifier....
Generate everything after import statements. @param entity The meta entity for which to write the body @param context The processing context @return body content
printClassDeclaration
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/ClassWriter.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/ClassWriter.java
Apache-2.0
private static String getFullyQualifiedClassName(Metamodel entity) { return entity.getElement() instanceof PackageElement packageElement ? packageElement.getQualifiedName().toString() + "." + getGeneratedClassName( entity ) : getGeneratedClassFullyQualifiedName( (TypeElement) entity.getElement(), entity...
Generate everything after import statements. @param entity The meta entity for which to write the body @param context The processing context @return body content
getFullyQualifiedClassName
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/ClassWriter.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/ClassWriter.java
Apache-2.0
private static String getGeneratedClassName(Metamodel entity) { final String className = entity.getSimpleName(); return entity.isJakartaDataStyle() ? '_' + className : className + '_'; }
Generate everything after import statements. @param entity The meta entity for which to write the body @param context The processing context @return body content
getGeneratedClassName
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/ClassWriter.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/ClassWriter.java
Apache-2.0
private static String getGeneratedSuperclassName(Element superClassElement, boolean jakartaDataStyle) { return getGeneratedClassName( (TypeElement) superClassElement, jakartaDataStyle ); }
Generate everything after import statements. @param entity The meta entity for which to write the body @param context The processing context @return body content
getGeneratedSuperclassName
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/ClassWriter.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/ClassWriter.java
Apache-2.0
private static String getGeneratedClassName(TypeElement typeElement, boolean jakartaDataStyle) { final String simpleName = typeElement.getSimpleName().toString(); final Element enclosingElement = typeElement.getEnclosingElement(); return (enclosingElement instanceof TypeElement ? getGeneratedSuperclassName( e...
Generate everything after import statements. @param entity The meta entity for which to write the body @param context The processing context @return body content
getGeneratedClassName
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/ClassWriter.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/ClassWriter.java
Apache-2.0
private static String writeGeneratedAnnotation(Metamodel entity, Context context) { StringBuilder generatedAnnotation = new StringBuilder(); generatedAnnotation .append( "@" ) .append( entity.importType( "jakarta.annotation.Generated" ) ) .append( "(" ); if ( context.addGeneratedDate() ) { generate...
Generate everything after import statements. @param entity The meta entity for which to write the body @param context The processing context @return body content
writeGeneratedAnnotation
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/ClassWriter.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/ClassWriter.java
Apache-2.0
private static String writeSuppressWarnings(Context context) { final StringBuilder annotation = new StringBuilder("@SuppressWarnings({"); final String[] warnings = context.getSuppressedWarnings(); for (int i = 0; i < warnings.length; i++) { if ( i>0 ) { annotation.append(", "); } annotation.append('"...
Generate everything after import statements. @param entity The meta entity for which to write the body @param context The processing context @return body content
writeSuppressWarnings
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/ClassWriter.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/ClassWriter.java
Apache-2.0
private static String writeScopeAnnotation(Metamodel entity) { return "@" + entity.importType( entity.scope() ); }
Generate everything after import statements. @param entity The meta entity for which to write the body @param context The processing context @return body content
writeScopeAnnotation
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/ClassWriter.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/ClassWriter.java
Apache-2.0
private static String writeStaticMetaModelAnnotation(Metamodel entity) { final String annotation = entity.isJakartaDataStyle() ? "jakarta.data.metamodel.StaticMetamodel" : "jakarta.persistence.metamodel.StaticMetamodel"; final String simpleName = entity.importType( entity.getQualifiedName() ); return "@" ...
Generate everything after import statements. @param entity The meta entity for which to write the body @param context The processing context @return body content
writeStaticMetaModelAnnotation
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/ClassWriter.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/ClassWriter.java
Apache-2.0
public ProcessingEnvironment getProcessingEnvironment() { return processingEnvironment; }
Whether all mapping files are xml-mapping-metadata-complete. In this case no annotation processing will take place.
getProcessingEnvironment
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
Apache-2.0
public boolean generateJakartaDataStaticMetamodel() { return generateJakartaDataStaticMetamodel; }
Whether all mapping files are xml-mapping-metadata-complete. In this case no annotation processing will take place.
generateJakartaDataStaticMetamodel
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
Apache-2.0
public void setGenerateJakartaDataStaticMetamodel(boolean generateJakartaDataStaticMetamodel) { this.generateJakartaDataStaticMetamodel = generateJakartaDataStaticMetamodel; }
Whether all mapping files are xml-mapping-metadata-complete. In this case no annotation processing will take place.
setGenerateJakartaDataStaticMetamodel
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
Apache-2.0
public boolean addInjectAnnotation() { return addInjectAnnotation; }
Whether all mapping files are xml-mapping-metadata-complete. In this case no annotation processing will take place.
addInjectAnnotation
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
Apache-2.0
public void setAddInjectAnnotation(boolean addInjectAnnotation) { this.addInjectAnnotation = addInjectAnnotation; }
Whether all mapping files are xml-mapping-metadata-complete. In this case no annotation processing will take place.
setAddInjectAnnotation
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
Apache-2.0
public boolean addDependentAnnotation() { return addDependentAnnotation; }
Whether all mapping files are xml-mapping-metadata-complete. In this case no annotation processing will take place.
addDependentAnnotation
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
Apache-2.0
public void setAddDependentAnnotation(boolean addDependentAnnotation) { this.addDependentAnnotation = addDependentAnnotation; }
Whether all mapping files are xml-mapping-metadata-complete. In this case no annotation processing will take place.
setAddDependentAnnotation
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
Apache-2.0
public boolean addNonnullAnnotation() { return addNonnullAnnotation; }
Whether all mapping files are xml-mapping-metadata-complete. In this case no annotation processing will take place.
addNonnullAnnotation
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
Apache-2.0
public void setAddNonnullAnnotation(boolean addNonnullAnnotation) { this.addNonnullAnnotation = addNonnullAnnotation; }
Whether all mapping files are xml-mapping-metadata-complete. In this case no annotation processing will take place.
setAddNonnullAnnotation
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
Apache-2.0
public boolean addGeneratedAnnotation() { return addGeneratedAnnotation; }
Whether all mapping files are xml-mapping-metadata-complete. In this case no annotation processing will take place.
addGeneratedAnnotation
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
Apache-2.0
public void setAddGeneratedAnnotation(boolean addGeneratedAnnotation) { this.addGeneratedAnnotation = addGeneratedAnnotation; }
Whether all mapping files are xml-mapping-metadata-complete. In this case no annotation processing will take place.
setAddGeneratedAnnotation
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
Apache-2.0
public boolean addGeneratedDate() { return addGenerationDate; }
Whether all mapping files are xml-mapping-metadata-complete. In this case no annotation processing will take place.
addGeneratedDate
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
Apache-2.0
public void setAddGenerationDate(boolean addGenerationDate) { this.addGenerationDate = addGenerationDate; }
Whether all mapping files are xml-mapping-metadata-complete. In this case no annotation processing will take place.
setAddGenerationDate
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
Apache-2.0
public boolean addSuppressWarningsAnnotation() { return suppressedWarnings != null; }
Whether all mapping files are xml-mapping-metadata-complete. In this case no annotation processing will take place.
addSuppressWarningsAnnotation
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
Apache-2.0
public String[] getSuppressedWarnings() { return suppressedWarnings; }
Whether all mapping files are xml-mapping-metadata-complete. In this case no annotation processing will take place.
getSuppressedWarnings
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
Apache-2.0
public void setSuppressedWarnings(String[] suppressedWarnings) { this.suppressedWarnings = suppressedWarnings; }
Whether all mapping files are xml-mapping-metadata-complete. In this case no annotation processing will take place.
setSuppressedWarnings
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
Apache-2.0
public boolean addTransactionScopedAnnotation() { return addTransactionScopedAnnotation; }
Whether all mapping files are xml-mapping-metadata-complete. In this case no annotation processing will take place.
addTransactionScopedAnnotation
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
Apache-2.0
public void setAddTransactionScopedAnnotation(boolean addTransactionScopedAnnotation) { this.addTransactionScopedAnnotation = addTransactionScopedAnnotation; }
Whether all mapping files are xml-mapping-metadata-complete. In this case no annotation processing will take place.
setAddTransactionScopedAnnotation
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
Apache-2.0
public boolean isQuarkusInjection() { return quarkusInjection; }
Whether all mapping files are xml-mapping-metadata-complete. In this case no annotation processing will take place.
isQuarkusInjection
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
Apache-2.0
public void setQuarkusInjection(boolean quarkusInjection) { this.quarkusInjection = quarkusInjection; }
Whether all mapping files are xml-mapping-metadata-complete. In this case no annotation processing will take place.
setQuarkusInjection
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
Apache-2.0
public boolean isDataEventPackageAvailable() { return dataEventPackageAvailable; }
Whether all mapping files are xml-mapping-metadata-complete. In this case no annotation processing will take place.
isDataEventPackageAvailable
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
Apache-2.0
public void setDataEventPackageAvailable(boolean dataEventPackageAvailable) { this.dataEventPackageAvailable = dataEventPackageAvailable; }
Whether all mapping files are xml-mapping-metadata-complete. In this case no annotation processing will take place.
setDataEventPackageAvailable
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
Apache-2.0
public Elements getElementUtils() { return processingEnvironment.getElementUtils(); }
Whether all mapping files are xml-mapping-metadata-complete. In this case no annotation processing will take place.
getElementUtils
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
Apache-2.0
public Types getTypeUtils() { return processingEnvironment.getTypeUtils(); }
Whether all mapping files are xml-mapping-metadata-complete. In this case no annotation processing will take place.
getTypeUtils
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
Apache-2.0
public String getPersistenceXmlLocation() { return persistenceXmlLocation; }
Whether all mapping files are xml-mapping-metadata-complete. In this case no annotation processing will take place.
getPersistenceXmlLocation
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
Apache-2.0
public List<String> getOrmXmlFiles() { return ormXmlFiles; }
Whether all mapping files are xml-mapping-metadata-complete. In this case no annotation processing will take place.
getOrmXmlFiles
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
Apache-2.0
public boolean containsMetaEntity(String qualifiedName) { return metaEntities.containsKey( qualifiedName ); }
Whether all mapping files are xml-mapping-metadata-complete. In this case no annotation processing will take place.
containsMetaEntity
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
Apache-2.0
public @Nullable Metamodel getMetaEntity(String qualifiedName) { return metaEntities.get( qualifiedName ); }
Whether all mapping files are xml-mapping-metadata-complete. In this case no annotation processing will take place.
getMetaEntity
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
Apache-2.0
public Collection<Metamodel> getMetaEntities() { return metaEntities.values(); }
Whether all mapping files are xml-mapping-metadata-complete. In this case no annotation processing will take place.
getMetaEntities
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
Apache-2.0
public void addMetaEntity(String qualifiedName, Metamodel metaEntity) { metaEntities.put( qualifiedName, metaEntity ); }
Whether all mapping files are xml-mapping-metadata-complete. In this case no annotation processing will take place.
addMetaEntity
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
Apache-2.0
public boolean containsMetaEmbeddable(String qualifiedName) { return metaEmbeddables.containsKey( qualifiedName ); }
Whether all mapping files are xml-mapping-metadata-complete. In this case no annotation processing will take place.
containsMetaEmbeddable
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
Apache-2.0
public @Nullable Metamodel getMetaEmbeddable(String qualifiedName) { return metaEmbeddables.get( qualifiedName ); }
Whether all mapping files are xml-mapping-metadata-complete. In this case no annotation processing will take place.
getMetaEmbeddable
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
Apache-2.0
public void addMetaEmbeddable(String qualifiedName, Metamodel metaEntity) { metaEmbeddables.put( qualifiedName, metaEntity ); }
Whether all mapping files are xml-mapping-metadata-complete. In this case no annotation processing will take place.
addMetaEmbeddable
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
Apache-2.0
public Collection<Metamodel> getMetaEmbeddables() { return metaEmbeddables.values(); }
Whether all mapping files are xml-mapping-metadata-complete. In this case no annotation processing will take place.
getMetaEmbeddables
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
Apache-2.0
public boolean containsDataMetaEntity(String qualifiedName) { return dataMetaEntities.containsKey( qualifiedName ); }
Whether all mapping files are xml-mapping-metadata-complete. In this case no annotation processing will take place.
containsDataMetaEntity
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
Apache-2.0
public @Nullable Metamodel getDataMetaEntity(String qualifiedName) { return dataMetaEntities.get( qualifiedName ); }
Whether all mapping files are xml-mapping-metadata-complete. In this case no annotation processing will take place.
getDataMetaEntity
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
Apache-2.0
public Collection<Metamodel> getDataMetaEntities() { return dataMetaEntities.values(); }
Whether all mapping files are xml-mapping-metadata-complete. In this case no annotation processing will take place.
getDataMetaEntities
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
Apache-2.0
public void addDataMetaEntity(String qualifiedName, Metamodel metaEntity) { dataMetaEntities.put( qualifiedName, metaEntity ); }
Whether all mapping files are xml-mapping-metadata-complete. In this case no annotation processing will take place.
addDataMetaEntity
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
Apache-2.0
public boolean containsDataMetaEmbeddable(String qualifiedName) { return dataMetaEmbeddables.containsKey( qualifiedName ); }
Whether all mapping files are xml-mapping-metadata-complete. In this case no annotation processing will take place.
containsDataMetaEmbeddable
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
Apache-2.0
public @Nullable Metamodel getDataMetaEmbeddable(String qualifiedName) { return dataMetaEmbeddables.get( qualifiedName ); }
Whether all mapping files are xml-mapping-metadata-complete. In this case no annotation processing will take place.
getDataMetaEmbeddable
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
Apache-2.0
public void addDataMetaEmbeddable(String qualifiedName, Metamodel metaEntity) { dataMetaEmbeddables.put( qualifiedName, metaEntity ); }
Whether all mapping files are xml-mapping-metadata-complete. In this case no annotation processing will take place.
addDataMetaEmbeddable
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
Apache-2.0
public Collection<Metamodel> getDataMetaEmbeddables() { return dataMetaEmbeddables.values(); }
Whether all mapping files are xml-mapping-metadata-complete. In this case no annotation processing will take place.
getDataMetaEmbeddables
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
Apache-2.0
public @Nullable Metamodel getMetamodel(String qualifiedName) { if ( metaEntities.containsKey( qualifiedName ) ) { return metaEntities.get( qualifiedName ); } else { return metaEmbeddables.get( qualifiedName ); } }
Whether all mapping files are xml-mapping-metadata-complete. In this case no annotation processing will take place.
getMetamodel
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
Apache-2.0
public @Nullable Metamodel getMetaAuxiliary(String qualifiedName) { return metaAuxiliaries.get( qualifiedName ); }
Whether all mapping files are xml-mapping-metadata-complete. In this case no annotation processing will take place.
getMetaAuxiliary
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
Apache-2.0
public Collection<Metamodel> getMetaAuxiliaries() { return metaAuxiliaries.values(); }
Whether all mapping files are xml-mapping-metadata-complete. In this case no annotation processing will take place.
getMetaAuxiliaries
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
Apache-2.0
public void addMetaAuxiliary(String qualifiedName, Metamodel metamodel) { metaAuxiliaries.put( qualifiedName, metamodel); }
Whether all mapping files are xml-mapping-metadata-complete. In this case no annotation processing will take place.
addMetaAuxiliary
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
Apache-2.0
public void addAccessTypeInformation(String qualifiedName, AccessTypeInformation info) { accessTypeInformation.put( qualifiedName, info ); }
Whether all mapping files are xml-mapping-metadata-complete. In this case no annotation processing will take place.
addAccessTypeInformation
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
Apache-2.0
public @Nullable AccessTypeInformation getAccessTypeInfo(String qualifiedName) { return accessTypeInformation.get( qualifiedName ); }
Whether all mapping files are xml-mapping-metadata-complete. In this case no annotation processing will take place.
getAccessTypeInfo
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
Apache-2.0
public TypeElement getTypeElementForFullyQualifiedName(String qualifiedName) { return processingEnvironment.getElementUtils().getTypeElement( qualifiedName ); }
Whether all mapping files are xml-mapping-metadata-complete. In this case no annotation processing will take place.
getTypeElementForFullyQualifiedName
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
Apache-2.0
void markGenerated(Metamodel metamodel) { generatedModelClasses.add( metamodel ); }
Whether all mapping files are xml-mapping-metadata-complete. In this case no annotation processing will take place.
markGenerated
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
Apache-2.0
boolean isAlreadyGenerated(Metamodel metamodel) { return generatedModelClasses.contains( metamodel ); }
Whether all mapping files are xml-mapping-metadata-complete. In this case no annotation processing will take place.
isAlreadyGenerated
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
Apache-2.0
public Set<CharSequence> getElementsToRedo() { return elementsToRedo; }
Whether all mapping files are xml-mapping-metadata-complete. In this case no annotation processing will take place.
getElementsToRedo
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
Apache-2.0
public void addElementToRedo(CharSequence qualifiedName) { elementsToRedo.add( qualifiedName ); }
Whether all mapping files are xml-mapping-metadata-complete. In this case no annotation processing will take place.
addElementToRedo
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
Apache-2.0
public void removeElementToRedo(CharSequence qualifiedName) { elementsToRedo.remove( qualifiedName ); }
Whether all mapping files are xml-mapping-metadata-complete. In this case no annotation processing will take place.
removeElementToRedo
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
Apache-2.0
public void logMessage(Diagnostic.Kind type, String message) { if ( logDebug || type != Diagnostic.Kind.OTHER ) { processingEnvironment.getMessager().printMessage( type, message ); } }
Whether all mapping files are xml-mapping-metadata-complete. In this case no annotation processing will take place.
logMessage
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
Apache-2.0
public boolean isFullyXmlConfigured() { return fullyXmlConfigured != null && fullyXmlConfigured; }
Whether all mapping files are xml-mapping-metadata-complete. In this case no annotation processing will take place.
isFullyXmlConfigured
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
Apache-2.0
public void mappingDocumentFullyXmlConfigured(boolean fullyXmlConfigured) { this.fullyXmlConfigured = this.fullyXmlConfigured == null ? fullyXmlConfigured : this.fullyXmlConfigured && fullyXmlConfigured; }
Whether all mapping files are xml-mapping-metadata-complete. In this case no annotation processing will take place.
mappingDocumentFullyXmlConfigured
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
Apache-2.0
public AccessType getPersistenceUnitDefaultAccessType() { return persistenceUnitDefaultAccessType; }
Whether all mapping files are xml-mapping-metadata-complete. In this case no annotation processing will take place.
getPersistenceUnitDefaultAccessType
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
Apache-2.0
public void setPersistenceUnitDefaultAccessType(AccessType persistenceUnitDefaultAccessType) { this.persistenceUnitDefaultAccessType = persistenceUnitDefaultAccessType; }
Whether all mapping files are xml-mapping-metadata-complete. In this case no annotation processing will take place.
setPersistenceUnitDefaultAccessType
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
Apache-2.0
public boolean doLazyXmlParsing() { return lazyXmlParsing; }
Whether all mapping files are xml-mapping-metadata-complete. In this case no annotation processing will take place.
doLazyXmlParsing
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
Apache-2.0
public void message(Element method, String message, Diagnostic.Kind severity) { getProcessingEnvironment().getMessager() .printMessage( severity, message, method ); }
Whether all mapping files are xml-mapping-metadata-complete. In this case no annotation processing will take place.
message
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
Apache-2.0
public void message(Element method, AnnotationMirror mirror, AnnotationValue value, String message, Diagnostic.Kind severity) { getProcessingEnvironment().getMessager() .printMessage( severity, message, method, mirror, value ); }
Whether all mapping files are xml-mapping-metadata-complete. In this case no annotation processing will take place.
message
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
Apache-2.0
public void message(Element method, AnnotationMirror mirror, String message, Diagnostic.Kind severity) { getProcessingEnvironment().getMessager() .printMessage( severity, message, method, mirror ); }
Whether all mapping files are xml-mapping-metadata-complete. In this case no annotation processing will take place.
message
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
Apache-2.0
@Override public String toString() { final StringBuilder sb = new StringBuilder(); sb.append( "Context" ); sb.append( "{accessTypeInformation=" ).append( accessTypeInformation ); sb.append( ", logDebug=" ).append( logDebug ); sb.append( ", lazyXmlParsing=" ).append( lazyXmlParsing ); sb.append( ", fullyXml...
Whether all mapping files are xml-mapping-metadata-complete. In this case no annotation processing will take place.
toString
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
Apache-2.0
public boolean checkNamedQuery(String name) { return checkedNamedQueries.add(name); }
Whether all mapping files are xml-mapping-metadata-complete. In this case no annotation processing will take place.
checkNamedQuery
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
Apache-2.0
public void setUsesQuarkusOrm(boolean b) { usesQuarkusOrm = b; }
Whether all mapping files are xml-mapping-metadata-complete. In this case no annotation processing will take place.
setUsesQuarkusOrm
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
Apache-2.0
public boolean usesQuarkusOrm() { return usesQuarkusOrm; }
Whether all mapping files are xml-mapping-metadata-complete. In this case no annotation processing will take place.
usesQuarkusOrm
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
Apache-2.0
public void setUsesQuarkusReactive(boolean b) { usesQuarkusReactive = b; }
Whether all mapping files are xml-mapping-metadata-complete. In this case no annotation processing will take place.
setUsesQuarkusReactive
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
Apache-2.0
public boolean usesQuarkusReactive() { return usesQuarkusReactive; }
Whether all mapping files are xml-mapping-metadata-complete. In this case no annotation processing will take place.
usesQuarkusReactive
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
Apache-2.0
public void setInclude(String include) { includes = include.split(",\\s*"); }
Whether all mapping files are xml-mapping-metadata-complete. In this case no annotation processing will take place.
setInclude
java
hibernate/hibernate-orm
tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
https://github.com/hibernate/hibernate-orm/blob/master/tooling/metamodel-generator/src/main/java/org/hibernate/processor/Context.java
Apache-2.0