From 03a5c36aced10ca23ec24c8584bc694722222606 Mon Sep 17 00:00:00 2001 From: Volker Berlin Date: Sat, 6 Apr 2019 17:49:28 +0200 Subject: [PATCH] API doc --- src/de/inetsoftware/classparser/Code.java | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/de/inetsoftware/classparser/Code.java b/src/de/inetsoftware/classparser/Code.java index 9e16e22..c3a9576 100644 --- a/src/de/inetsoftware/classparser/Code.java +++ b/src/de/inetsoftware/classparser/Code.java @@ -1,5 +1,5 @@ /* - Copyright 2011 - 2018 Volker Berlin (i-net software) + Copyright 2011 - 2019 Volker Berlin (i-net software) Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -90,6 +90,13 @@ public class Code { return lineNumberTable; } + /** + * Get the local variable table of this method. + * + * @return the variables + * @throws IOException + * if any I/O error occur + */ @Nullable public LocalVariableTable getLocalVariableTable() throws IOException{ if( localVariableTable != null ){