com.thoughtworks.qdox.model.JavaClassParent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.apache.servicemix.bundles.qdox
Show all versions of org.apache.servicemix.bundles.qdox
This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.
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);
}