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

io.virtdata.processors.DocCtorData Maven / Gradle / Ivy

There is a newer version: 2.12.15
Show newest version
package io.virtdata.processors;

import java.util.List;
import java.util.Map;

public interface DocCtorData {

    /**
     * @return the {@link Class#getSimpleName()} of the documented ctor.
     */
    String getClassName();

    /**
     * @return javadoc for the documented ctor, or null if it isn't provided
     */
    String getCtorJavaDoc();

    /**
     * @return an ordered map of the arguments of the documented constructor in name,type form.
     */
    Map getArgs();

    /**
     * @return a list of examples, where each is list of (example syntax, comment..)
     */
    List> getExamples();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy