Skip to content

Instantly share code, notes, and snippets.

View bdavisx's full-sized avatar

Bill Davis bdavisx

  • You Are Here...
View GitHub Profile
@bdavisx
bdavisx / gist:8108899
Last active January 1, 2016 06:59
Protected Package Interfaces
// Note that this interface is defined with default/package access
interface PackageAccessInterface {
void doSomething();
}
public class ProvidesPackageAccessInterface {
private String someVariable;
private String someOtherVariable;
private String yetAnotherVariable;