Swati4star/Images-to-PDF

View on GitHub
app/src/main/java/swati4star/createpdf/fragment/texttopdf/TextToPdfContract.java

Summary

Maintainability
A
0 mins
Test Coverage
package swati4star.createpdf.fragment.texttopdf;

/**
 * The {@link TextToPdfContract} is a contract used by the fragment to communicate with its
 * enhancements.
 */
public interface TextToPdfContract {
    /**
     * Represents the view (the fragment in this case).
     */
    interface View {
        /**
         * Update the view when enhancement is changed.
         */
        void updateView();
    }
}