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

com.thoughtworks.qdox.model.JavaClassParent Maven / Gradle / Ivy

The newest version!
package com.thoughtworks.qdox.model;

public interface JavaClassParent {

    /**
     * Resolve a type-name within the context of this source or class.
     * @param typeName name of a type
     * @return the fully-qualified name of the type, or null if it cannot
     *     be resolved
     */
    public String resolveType(String typeName);

    public ClassLibrary getClassLibrary();

    public String getClassNamePrefix();

    public JavaSource getParentSource();

    public void addClass(JavaClass cls);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy