Skip to content

Instantly share code, notes, and snippets.

@darrenbkl
Created January 12, 2020 09:51
Show Gist options
  • Save darrenbkl/ec6ebaa9f7dd5ceb79ae7c393c770f25 to your computer and use it in GitHub Desktop.
Save darrenbkl/ec6ebaa9f7dd5ceb79ae7c393c770f25 to your computer and use it in GitHub Desktop.
test
Planet{
public void accept(Explorer explorer);
}
public class Mercury implements Planet {
@Override
public void accept(Explorer explorer)) {
explorer.visit(this);
}
}
public class Mars implements Planet{
@Override
public void accept(Explorer explorer)) {
explorer.visit(this);
}
}
public class Saturn implements Planet{
@Override
public void accept(Explorer explorer)) {
explorer.visit(this);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment