Skip to content

Instantly share code, notes, and snippets.

@jen6
Created July 13, 2015 13:42
Show Gist options
  • Save jen6/b191b870790ed17f54c0 to your computer and use it in GitHub Desktop.
Save jen6/b191b870790ed17f54c0 to your computer and use it in GitHub Desktop.
public class BusPostSetter {
public BusPostSetter(){}
public BusPostSetter(String Title, String Content, int Want) {}
public boolean post() {}
}
class BusList{
int Id, Want;
String Title, Content;
}
class BusListGetter {
public BusListGetter(){}
public BusList[] Get(int idx){}
}
class Bus{
int Id, WriterId, Want;
String Writer, Title, Content;
}
class BusGetter {
public BusGetter(){}
public Bus Get(int Id){}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment