Back to project page EulerSolutions.
The source code is released under:
MIT License
If you think the Android project EulerSolutions listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.eulersolutions.interfaces; import java.util.List; public interface ISolutionHandler { public List<String> getSolutionTitles(); public List<String> getSolutions(); public int numberOfSolutions(); public void setSolutionDisplay(ISolutionDisplay newDisplay); }