diff options
author | Jake Prather <JakeHP@Zoho.com> | 2013-07-04 20:18:42 -0500 |
---|---|---|
committer | Jake Prather <JakeHP@Zoho.com> | 2013-07-04 20:18:42 -0500 |
commit | c14253f70896c7815e0a78984b5129e5b434c86a (patch) | |
tree | cfa58c8b33191659b8d72b3241ee939ba96593e2 /java.html.markdown | |
parent | b59bbc949d773da612274ec1b176c25ac426f083 (diff) |
annotations explanation
Diffstat (limited to 'java.html.markdown')
-rw-r--r-- | java.html.markdown | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/java.html.markdown b/java.html.markdown index 785a2cb9..418bd649 100644 --- a/java.html.markdown +++ b/java.html.markdown @@ -337,6 +337,8 @@ class PennyFarthing extends Bicycle { } // You should mark a method you're overriding with an @annotation + // To learn more about what annotations are and their purpose + // check this out: http://docs.oracle.com/javase/tutorial/java/annotations/ @Override public void setGear(int gear) { gear = 0; |