Thomas Vachuska

Fixing javadocs.

Change-Id: I49faf425e0f9aa53547caf42f1d4025fb8d9dba6
...@@ -35,6 +35,7 @@ public class UiExtension { ...@@ -35,6 +35,7 @@ public class UiExtension {
35 * Creates a user interface extension for loading CSS and JS injections 35 * Creates a user interface extension for loading CSS and JS injections
36 * from {@code css.html} and {@code js.html} resources, respectively. 36 * from {@code css.html} and {@code js.html} resources, respectively.
37 * 37 *
38 + * @param views list of contributed views
38 * @param classLoader class-loader for user interface resources 39 * @param classLoader class-loader for user interface resources
39 */ 40 */
40 public UiExtension(List<UiView> views, ClassLoader classLoader) { 41 public UiExtension(List<UiView> views, ClassLoader classLoader) {
......
...@@ -49,7 +49,7 @@ ...@@ -49,7 +49,7 @@
49 <version>2.10.1</version> 49 <version>2.10.1</version>
50 <configuration> 50 <configuration>
51 <show>package</show> 51 <show>package</show>
52 - <excludePackageNames>org.onlab.thirdparty:*.impl:*.impl.*:org.onosproject.provider.*:org.onosproject.gui:org.onosproject.rest:org.onosproject.cli*:org.onosproject.tvue:org.onosproject.foo:org.onosproject.mobility:org.onosproject.proxyarp:org.onosproject.fwd:org.onosproject.ifwd:org.onosproject.optical:org.onosproject.config:org.onosproject.calendar:org.onosproject.sdnip*:org.onosproject.oecfg:org.onosproject.metrics:org.onosproject.store.*:org.onosproject.openflow.*:org.onosproject.common.*:org.onosproject.net.group.impl:org.onosproject.routing*:org.onosproject.bgprouter:org.onosproject.intentperf</excludePackageNames> 52 + <excludePackageNames>org.onlab.thirdparty:*.impl:*.impl.*:org.onosproject.provider.*:org.onosproject.rest:org.onosproject.cli*:org.onosproject.tvue:org.onosproject.foo:org.onosproject.mobility:org.onosproject.proxyarp:org.onosproject.fwd:org.onosproject.ifwd:org.onosproject.optical:org.onosproject.config:org.onosproject.calendar:org.onosproject.sdnip*:org.onosproject.oecfg:org.onosproject.metrics:org.onosproject.store.*:org.onosproject.openflow.*:org.onosproject.common.*:org.onosproject.net.group.impl:org.onosproject.routing*:org.onosproject.bgprouter:org.onosproject.intentperf</excludePackageNames>
53 <docfilessubdirs>true</docfilessubdirs> 53 <docfilessubdirs>true</docfilessubdirs>
54 <doctitle>ONOS Java API</doctitle> 54 <doctitle>ONOS Java API</doctitle>
55 <groups> 55 <groups>
......
...@@ -93,7 +93,7 @@ ...@@ -93,7 +93,7 @@
93 <group> 93 <group>
94 <title>GUI, REST &amp; Command-Line</title> 94 <title>GUI, REST &amp; Command-Line</title>
95 <packages> 95 <packages>
96 - org.onosproject.gui:org.onosproject.rest:org.onosproject.cli:org.onosproject.ui.*:org.onosproject.rest.*:org.onosproject.cli.*:org.onosproject.codec.impl 96 + org.onosproject.ui.impl:org.onosproject.rest:org.onosproject.cli:org.onosproject.ui.*:org.onosproject.rest.*:org.onosproject.cli.*:org.onosproject.codec.impl
97 </packages> 97 </packages>
98 </group> 98 </group>
99 <group> 99 <group>
......
...@@ -37,6 +37,7 @@ public class AbstractInjectionResource extends BaseResource { ...@@ -37,6 +37,7 @@ public class AbstractInjectionResource extends BaseResource {
37 * @param string string to split 37 * @param string string to split
38 * @param start index where to start looking for pattern 38 * @param start index where to start looking for pattern
39 * @param stopPattern optional pattern where to stop 39 * @param stopPattern optional pattern where to stop
40 + * @return index where the split should occur
40 */ 41 */
41 protected int split(String string, int start, String stopPattern) { 42 protected int split(String string, int start, String stopPattern) {
42 int i = stopPattern != null ? string.indexOf(stopPattern, start) : string.length(); 43 int i = stopPattern != null ? string.indexOf(stopPattern, start) : string.length();
...@@ -50,6 +51,7 @@ public class AbstractInjectionResource extends BaseResource { ...@@ -50,6 +51,7 @@ public class AbstractInjectionResource extends BaseResource {
50 * @param string source string 51 * @param string source string
51 * @param start index where to start stream 52 * @param start index where to start stream
52 * @param end index where to end stream 53 * @param end index where to end stream
54 + * @return input stream
53 */ 55 */
54 protected InputStream stream(String string, int start, int end) { 56 protected InputStream stream(String string, int start, int end) {
55 return new ByteArrayInputStream(string.substring(start, end).getBytes()); 57 return new ByteArrayInputStream(string.substring(start, end).getBytes());
......