@@ -97,6 +97,7 @@ protected Event() {
9797 /**
9898 * Starts the timing of this event.
9999 */
100+ @ Override
100101 final public void begin () {
101102 }
102103
@@ -105,6 +106,7 @@ final public void begin() {
105106 *
106107 * The {@code end} method must be invoked after the {@code begin} method.
107108 */
109+ @ Override
108110 final public void end () {
109111 }
110112
@@ -116,6 +118,7 @@ final public void end() {
116118 * not end with an explicit invocation of the {@code end} method, then the event
117119 * ends when the {@code commit} method is invoked.
118120 */
121+ @ Override
119122 final public void commit () {
120123 }
121124
@@ -126,6 +129,7 @@ final public void commit() {
126129 *
127130 * @return {@code true} if event is enabled, {@code false} otherwise
128131 */
132+ @ Override
129133 final public boolean isEnabled () {
130134 return false ;
131135 }
@@ -139,6 +143,7 @@ final public boolean isEnabled() {
139143 * @return {@code true} if the event can be written to the Flight Recorder
140144 * system, {@code false} otherwise
141145 */
146+ @ Override
142147 final public boolean shouldCommit () {
143148 return false ;
144149 }
@@ -164,6 +169,7 @@ final public boolean shouldCommit() {
164169 * @see EventType#getFields()
165170 * @see EventFactory
166171 */
172+ @ Override
167173 final public void set (int index , Object value ) {
168174 }
169175}
0 commit comments