Skip to content

Instantly share code, notes, and snippets.

@karol-lotkowski
Created August 21, 2015 21:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save karol-lotkowski/f90df33aeec6df874f1a to your computer and use it in GitHub Desktop.
Save karol-lotkowski/f90df33aeec6df874f1a to your computer and use it in GitHub Desktop.
Example of deprecated class
package com.karollotkowski.softwarehouse.dev;
import com.karollotkowski.softwarehouse.app.Application;
public interface Developer {
Application code();
}
package com.karollotkowski.softwarehouse.dev;
import com.karollotkowski.softwarehouse.app.Application;
import com.karollotkowski.softwarehouse.app.NumericApplication;
@Deprecated
public class FortranDeveloper implements Developer {
@Override
public Application code() {
return new NumericApplication("Numerical weather prediction");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment