1 /* 2 * Copyright 2021 Google LLC 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * https://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 package com.google.android.enterprise.connectedapps.processor.annotationdiscovery; 17 18 /** Prints annotations as they would appear in source code. */ 19 public interface AnnotationPrinter { 20 crossProfileAsAnnotation()21 String crossProfileAsAnnotation(); 22 crossProfileAsAnnotation(String content)23 String crossProfileAsAnnotation(String content); 24 crossProfileQualifiedName()25 String crossProfileQualifiedName(); 26 crossProfileCallbackAsAnnotation()27 String crossProfileCallbackAsAnnotation(); 28 crossProfileCallbackAsAnnotation(String content)29 String crossProfileCallbackAsAnnotation(String content); 30 crossProfileCallbackQualifiedName()31 String crossProfileCallbackQualifiedName(); 32 crossProfileConfigurationAsAnnotation()33 String crossProfileConfigurationAsAnnotation(); 34 crossProfileConfigurationAsAnnotation(String content)35 String crossProfileConfigurationAsAnnotation(String content); 36 crossProfileConfigurationQualifiedName()37 String crossProfileConfigurationQualifiedName(); 38 crossProfileConfigurationsAsAnnotation(String content)39 String crossProfileConfigurationsAsAnnotation(String content); 40 crossProfileConfigurationsQualifiedName()41 String crossProfileConfigurationsQualifiedName(); 42 crossProfileProviderAsAnnotation()43 String crossProfileProviderAsAnnotation(); 44 crossProfileProviderAsAnnotation(String content)45 String crossProfileProviderAsAnnotation(String content); 46 crossProfileProviderQualifiedName()47 String crossProfileProviderQualifiedName(); 48 crossProfileTestAsAnnotation(String content)49 String crossProfileTestAsAnnotation(String content); 50 crossProfileTestQualifiedName()51 String crossProfileTestQualifiedName(); 52 } 53