Created
October 4, 2013 17:04
-
-
Save lincolnthree/6829210 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package org.jboss.forge.addon.projects.building; | |
| import org.jboss.forge.addon.projects.ProjectLocator; | |
| /** | |
| * Used to select a given build system. | |
| * | |
| * @author <a href="mailto:[email protected]">Lincoln Baxter, III</a> | |
| */ | |
| public interface BuildSystemType | |
| { | |
| /** | |
| * Return the human-readable name for this {@link BuildSystemType}. This should be relatively unique. | |
| */ | |
| public String getType(); | |
| /** | |
| * Return the {@link ProjectLocator} corresponding to this {@link BuildSystemType}. | |
| */ | |
| public ProjectLocator getProjectLocator(); | |
| /** | |
| * Return the {@link ProjectBuilder} corresponding to this {@link BuildSystemType}. | |
| */ | |
| public ProjectBuilder getProjectBuilder(); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment