- 所有已实现的接口:
- javax.annotation.processing.Processor
public class GenerateLambdaProcessor
extends javax.annotation.processing.AbstractProcessor
Copyright 2016 Anders Granau Høfft
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.
END OF NOTICE
This AbstractProcessor only exists in order to auto-generate source code, namely an interface with multiple signatures.
Since the processor is part of the project, where the annotation it processes i located, it is important the compilation
proceeds in wel defined rounds, i.e. the processor must be compiled, before the annotated class, which triggers the processor.
Being a Maven project, this is currently handled in the pom.xml file, by the maven-compiler-plugin.
- 作者:
- Anders Granau Høfft