Skip to content

Instantly share code, notes, and snippets.

@andriybuday
Created June 11, 2018 20:12
Show Gist options
  • Save andriybuday/ed19902419e84b32d647576c630b2d77 to your computer and use it in GitHub Desktop.
Save andriybuday/ed19902419e84b32d647576c630b2d77 to your computer and use it in GitHub Desktop.
public class CarDecorator extends Car {
protected Car decoratedCar;
public CarDecorator(Car car) {
decoratedCar = car;
}
@Override
public void Go() {
decoratedCar.Go();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment