@@ -143,6 +143,7 @@ final class LogEntryImpl implements LogEntry
143143 * @return the bundle that created this LogEntry object;<code>null</code> if no
144144 * bundle is associated with this LogEntry object
145145 */
146+ @ Override
146147 public Bundle getBundle ()
147148 {
148149 return m_bundle ;
@@ -155,6 +156,7 @@ public Bundle getBundle()
155156 * this LogEntry object; <code>null</code> if no {@link ServiceReference} object
156157 * was provided
157158 */
159+ @ Override
158160 public ServiceReference <?> getServiceReference ()
159161 {
160162 return m_serviceReference ;
@@ -171,6 +173,7 @@ public ServiceReference<?> getServiceReference()
171173 * @see org.osgi.service.LogService#LOG_INFO
172174 * @see org.osgi.service.LogService#LOG_DEBUG
173175 */
176+ @ Override
174177 public int getLevel ()
175178 {
176179 if (m_legacyLevel != m_level .ordinal ()) {
@@ -184,6 +187,7 @@ public int getLevel()
184187 * Returns the human readable message associated with this LogEntry object.
185188 * @return a string containing the message associated with this LogEntry object
186189 */
190+ @ Override
187191 public String getMessage ()
188192 {
189193 return m_message ;
@@ -202,6 +206,7 @@ public String getMessage()
202206 * @return throwable object of the exception associated with this LogEntry;
203207 * <code>null</code> if no exception is associated with this LogEntry object
204208 */
209+ @ Override
205210 public Throwable getException ()
206211 {
207212 return m_exception ;
@@ -213,6 +218,7 @@ public Throwable getException()
213218 * @return the system time in milliseconds when this LogEntry object was created
214219 * @see System#currentTimeMillis()
215220 */
221+ @ Override
216222 public long getTime ()
217223 {
218224 return m_time ;
0 commit comments