com.thoughtworks.qdox.model.JavaSource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.apache.fop Show documentation
Show all versions of org.apache.fop Show documentation
The core maven build properties
The newest version!
package com.thoughtworks.qdox.model;
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.
*/
import java.net.URL;
import java.util.List;
import com.thoughtworks.qdox.library.ClassLibrary;
/**
* The root of every JavaModel, even for those based on binary classes.
*
* @author Robert Scholte
*/
public interface JavaSource
{
/**
* @return the URL of the source file
* @since 1.4
*/
URL getURL();
/**
* The package of this source or null
*
* @return the package
*/
JavaPackage getPackage();
/**
* Retrieve all the import
*
* @return the imports, never null
*/
List getImports();
/**
* A List with all direct classes of this source, never null
*
* @return a list of JavaClasses, never null
*/
List getClasses();
/**
* Complete code representation of this source
*
* @return the code block of this source
*/
String getCodeBlock();
/**
* If there's a package, return the packageName, followed by a dot, otherwise an empty String
*
* @return the class name prefix, otherwise an empty String
*/
String getClassNamePrefix();
/**
* Try to get the JavaClass child based on its name relative to the package.
* This doesn't try to resolve it by recursion.
*
* @param name the name of the class
* @return the resolved JavaClass, otherwise null
*/
JavaClass getNestedClassByName( String name );
/**
* Try to get any class of this source by name.
* The name can be both the fully qualified name or just the name of the class.
*
* @param name the (fully qualified) name of the class
* @return the matching class, otherwise null
* @since 2.0
*/
JavaClass getClassByName( String name );
ClassLibrary getJavaClassLibrary();
/**
* Returns the name of the package or an empty String if there's no package
*
* @return the package name, otherwise an empty String
*/
String getPackageName();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy