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

com.alphasystem.docbook.builder.Builder Maven / Gradle / Ivy

The newest version!
package com.alphasystem.docbook.builder;

import java.util.List;

public interface Builder {

    S getSource();
    Builder getParent();
    String getRole();
    List process();
}