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
| import java.io.File; | |
| import java.io.IOException; | |
| import java.io.PrintWriter; | |
| import org.eclipse.egit.github.core.Download; | |
| import org.eclipse.egit.github.core.RepositoryId; | |
| import org.eclipse.egit.github.core.client.GitHubClient; | |
| import org.eclipse.egit.github.core.service.DownloadService; | |
| /** |
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
| GitHubClient client = new GitHubClient().setCredentials("user", "p4ssw0rd"); | |
| Gist gist = new Gist().setDescription("Prints a string to standard out"); | |
| GistFile file = new GistFile().setContent("System.out.println(\"Hello World\");"); | |
| gist.setFiles(Collections.singletonMap("Hello.java", file)); | |
| gist = new GistService(client).createGist(gist); |
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
| public class Main { | |
| /** | |
| * @see java.lang.Object#hashCode() | |
| */ | |
| public int hashCode() { | |
| return -1; | |
| } | |
| public static void main(String args[]) { |
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
| /** | |
| * SWT Utilities. | |
| * | |
| * @author Kevin Sawicki ([email protected]) | |
| */ | |
| public abstract class SwtUtils { | |
| /** | |
| * Dispose of resource when widget is disposed. | |
| * |
NewerOlder