All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.toolisticon.aptk.compilermessage.test.OnClassAndNestedClass Maven / Gradle / Ivy

The newest version!
package io.toolisticon.aptk.compilermessage.test;

import io.toolisticon.aptk.compilermessage.api.DeclareCompilerMessage;
import io.toolisticon.aptk.compilermessage.api.DeclareCompilerMessageCodePrefix;

@DeclareCompilerMessageCodePrefix("WTF")
@DeclareCompilerMessage(enumValueName = "ON_CLASS", code = "002",message = "ON CLASS Test ${0}")
public class OnClassAndNestedClass {

    @DeclareCompilerMessage(enumValueName = "ON_CLASS_METHOD", code = "003",message = "ON CLASS METHOD Test ${0}")
    public void anotherMethod() {

    }

    @DeclareCompilerMessage(enumValueName = "ON_NESTED_CLASS", code = "004",message = "ON NESTED CLASS Test ${0}")
    @DeclareCompilerMessage(enumValueName = "FOR_EMPTY_CODE_TEST1", message = "FOR_EMPTY_CODE_TEST")
    @DeclareCompilerMessage(enumValueName = "FOR_EMPTY_CODE_TEST2", message = "FOR_EMPTY_CODE_TEST")
    static class nestedClass {


        @DeclareCompilerMessage(enumValueName = "ON_NESTED_CLASS_METHOD", code = "005",message = "ON NESTED CLASS METHOD Test ${0}")
        public void anotherNestedMethod() {

        }


    }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy