Skip to content

Instantly share code, notes, and snippets.

@hiroxpepe
Created February 15, 2012 13:31
Show Gist options
  • Save hiroxpepe/1835677 to your computer and use it in GitHub Desktop.
Save hiroxpepe/1835677 to your computer and use it in GitHub Desktop.
The Simple Hoge Interface
package com.hiroxpepe.domain;
/**
* this is a simple Hoge interface.
* @author hiroxpepe
*/
public interface Hoge {
Integer getId();
String getName();
void setId(Integer id);
void setName(String name);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment