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

org.openrewrite.java.tree.JavaSourceFile Maven / Gradle / Ivy

There is a newer version: 8.40.2
Show newest version
/*
 * Copyright 2021 the original author or authors.
 * 

* 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 *

* https://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.openrewrite.java.tree; import org.jspecify.annotations.Nullable; import org.openrewrite.Incubating; import org.openrewrite.SourceFile; import org.openrewrite.internal.WhitespaceValidationService; import org.openrewrite.java.internal.JavaWhitespaceValidationService; import org.openrewrite.java.internal.TypesInUse; import org.openrewrite.java.service.AnnotationService; import org.openrewrite.java.service.AutoFormatService; import org.openrewrite.java.service.ImportService; import java.lang.reflect.InvocationTargetException; import java.nio.file.Path; import java.util.List; public interface JavaSourceFile extends J, SourceFile { TypesInUse getTypesInUse(); J.@Nullable Package getPackageDeclaration(); JavaSourceFile withPackageDeclaration(J.Package pkg); List getImports(); JavaSourceFile withImports(List imports); List getClasses(); JavaSourceFile withClasses(List classes); Space getEof(); JavaSourceFile withEof(Space eof); Padding getPadding(); /** * @return An absolute or relative file path. */ @Override Path getSourcePath(); @Override @SuppressWarnings("unchecked") JavaSourceFile withSourcePath(Path path); @SuppressWarnings("unchecked") @Override @Incubating(since = "8.2.0") default T service(Class service) { try { // use name indirection due to possibility of multiple class loaders being used if (ImportService.class.getName().equals(service.getName())) { return (T) service.getConstructor().newInstance(); } else if (AutoFormatService.class.getName().equals(service.getName())) { return (T) service.getConstructor().newInstance(); } else if (AnnotationService.class.getName().equals(service.getName())) { return (T) service.getConstructor().newInstance(); } else if (WhitespaceValidationService.class.getName().equals(service.getName())) { // Only unit tests should need to use this service, so no classloading concerns return (T) new JavaWhitespaceValidationService(); } else { throw new UnsupportedOperationException("Service " + service + " not supported"); } } catch (InstantiationException | IllegalAccessException | InvocationTargetException | NoSuchMethodException e) { throw new RuntimeException(e); } } interface Padding { List> getImports(); JavaSourceFile withImports(List> imports); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy