aboutsummaryrefslogtreecommitdiff
path: root/src/j9stubs/org/mapstruct/ap/spi
diff options
context:
space:
mode:
authorRoel Spilker <r.spilker@gmail.com>2020-02-14 00:06:52 +0100
committerRoel Spilker <r.spilker@gmail.com>2020-02-14 00:07:45 +0100
commit0d7540db0cc0c9a2758799522925f09eddeb7420 (patch)
tree10f7b31859ebe9ed670b04ff4007406e5de3dd7a /src/j9stubs/org/mapstruct/ap/spi
parenta8dd99d9f080be6839fe507ade104fccac115de4 (diff)
downloadlombok-0d7540db0cc0c9a2758799522925f09eddeb7420.tar.gz
lombok-0d7540db0cc0c9a2758799522925f09eddeb7420.tar.bz2
lombok-0d7540db0cc0c9a2758799522925f09eddeb7420.zip
(#2125) Extract mapstruct binding to separate module.
Diffstat (limited to 'src/j9stubs/org/mapstruct/ap/spi')
-rw-r--r--src/j9stubs/org/mapstruct/ap/spi/AstModifyingAnnotationProcessor.java48
1 files changed, 0 insertions, 48 deletions
diff --git a/src/j9stubs/org/mapstruct/ap/spi/AstModifyingAnnotationProcessor.java b/src/j9stubs/org/mapstruct/ap/spi/AstModifyingAnnotationProcessor.java
deleted file mode 100644
index ffb99030..00000000
--- a/src/j9stubs/org/mapstruct/ap/spi/AstModifyingAnnotationProcessor.java
+++ /dev/null
@@ -1,48 +0,0 @@
-/**
- * Copyright 2012-2017 Gunnar Morling (http://www.gunnarmorling.de/)
- * and/or other contributors as indicated by the @authors tag. See the
- * copyright.txt file in the distribution for a full listing of all
- * contributors.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.mapstruct.ap.spi;
-
-import javax.lang.model.type.TypeMirror;
-
-/**
- * A contract to be implemented by other annotation processors which - against the design philosophy of JSR 269 - alter
- * the types under compilation.
- * <p>
- * This contract will be queried by MapStruct when examining types referenced by mappers to be generated, most notably
- * the source and target types of mapping methods. If at least one AST-modifying processor announces further changes to
- * such type, the generation of the affected mapper(s) will be deferred to a future round in the annnotation processing
- * cycle.
- * <p>
- * Implementations are discovered via the service loader, i.e. a JAR providing an AST-modifying processor needs to
- * declare its implementation in a file {@code META-INF/services/org.mapstruct.ap.spi.AstModifyingAnnotationProcessor}.
- *
- * @author Gunnar Morling
- */
-//@org.mapstruct.util.Experimental
-public interface AstModifyingAnnotationProcessor {
-
- /**
- * Whether the specified type has been fully processed by this processor or not (i.e. this processor will amend the
- * given type's structure after this invocation).
- *
- * @param type The type of interest
- * @return {@code true} if this processor has fully processed the given type, {@code false} otherwise.
- */
- boolean isTypeComplete(TypeMirror type);
-} \ No newline at end of file