Javadoc clean-up and apps -s command clean-up.
Change-Id: I6a4859fd05edb17a02333e4d68496d54589b586b
Showing
4 changed files
with
43 additions
and
3 deletions
| ... | @@ -43,7 +43,7 @@ public class ApplicationsListCommand extends AbstractShellCommand { | ... | @@ -43,7 +43,7 @@ public class ApplicationsListCommand extends AbstractShellCommand { |
| 43 | "features=%s, featuresRepo=%s, permissions=%s"; | 43 | "features=%s, featuresRepo=%s, permissions=%s"; |
| 44 | 44 | ||
| 45 | private static final String SHORT_FMT = | 45 | private static final String SHORT_FMT = |
| 46 | - "%s %3d %-28s %-8s %-16s %s"; | 46 | + "%s %3d %-32s %-8s %s"; |
| 47 | 47 | ||
| 48 | @Option(name = "-s", aliases = "--short", description = "Show short output only", | 48 | @Option(name = "-s", aliases = "--short", description = "Show short output only", |
| 49 | required = false, multiValued = false) | 49 | required = false, multiValued = false) |
| ... | @@ -69,7 +69,7 @@ public class ApplicationsListCommand extends AbstractShellCommand { | ... | @@ -69,7 +69,7 @@ public class ApplicationsListCommand extends AbstractShellCommand { |
| 69 | if (shortOnly) { | 69 | if (shortOnly) { |
| 70 | print(SHORT_FMT, isActive ? "*" : " ", | 70 | print(SHORT_FMT, isActive ? "*" : " ", |
| 71 | app.id().id(), app.id().name(), app.version(), | 71 | app.id().id(), app.id().name(), app.version(), |
| 72 | - app.origin(), app.description()); | 72 | + app.description()); |
| 73 | } else { | 73 | } else { |
| 74 | print(FMT, isActive ? "*" : " ", | 74 | print(FMT, isActive ? "*" : " ", |
| 75 | app.id().id(), app.id().name(), app.version(), app.origin(), | 75 | app.id().id(), app.id().name(), app.version(), app.origin(), | ... | ... |
| 1 | +/* | ||
| 2 | + * Copyright 2015 Open Networking Laboratory | ||
| 3 | + * | ||
| 4 | + * Licensed under the Apache License, Version 2.0 (the "License"); | ||
| 5 | + * you may not use this file except in compliance with the License. | ||
| 6 | + * You may obtain a copy of the License at | ||
| 7 | + * | ||
| 8 | + * http://www.apache.org/licenses/LICENSE-2.0 | ||
| 9 | + * | ||
| 10 | + * Unless required by applicable law or agreed to in writing, software | ||
| 11 | + * distributed under the License is distributed on an "AS IS" BASIS, | ||
| 12 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| 13 | + * See the License for the specific language governing permissions and | ||
| 14 | + * limitations under the License. | ||
| 15 | + */ | ||
| 16 | + | ||
| 17 | +/** | ||
| 18 | + * Implementation of distributed store for the flow objective state. | ||
| 19 | + */ | ||
| 20 | +package org.onosproject.store.flowobjective.impl; | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
| ... | @@ -103,7 +103,7 @@ | ... | @@ -103,7 +103,7 @@ |
| 103 | <group> | 103 | <group> |
| 104 | <title>Sample Applications</title> | 104 | <title>Sample Applications</title> |
| 105 | <packages> | 105 | <packages> |
| 106 | - org.onosproject.tvue:org.onosproject.fwd:org.onosproject.ifwd:org.onosproject.mobility:org.onosproject.proxyarp:org.onosproject.foo:org.onosproject.calendar:org.onosproject.optical:org.onosproject.optical.*:org.onosproject.sdnip:org.onosproject.sdnip.*:org.onosproject.config:org.onosproject.routing:org.onosproject.routing*:org.onosproject.bgprouter:org.onosproject.intentperf:org.onosproject.segmentrouting:org.onosproject.segmentrouting.*:org.onosproject.reactive.routing* | 106 | + org.onosproject.tvue:org.onosproject.fwd:org.onosproject.ifwd:org.onosproject.mobility:org.onosproject.proxyarp:org.onosproject.foo:org.onosproject.calendar:org.onosproject.optical:org.onosproject.optical.*:org.onosproject.sdnip:org.onosproject.sdnip.*:org.onosproject.config:org.onosproject.routing:org.onosproject.routing*:org.onosproject.bgprouter:org.onosproject.intentperf:org.onosproject.segmentrouting:org.onosproject.segmentrouting.*:org.onosproject.reactive.routing*:org.onosproject.messagingperf |
| 107 | </packages> | 107 | </packages> |
| 108 | </group> | 108 | </group> |
| 109 | <group> | 109 | <group> | ... | ... |
| 1 | +/* | ||
| 2 | + * Copyright 2015 Open Networking Laboratory | ||
| 3 | + * | ||
| 4 | + * Licensed under the Apache License, Version 2.0 (the "License"); | ||
| 5 | + * you may not use this file except in compliance with the License. | ||
| 6 | + * You may obtain a copy of the License at | ||
| 7 | + * | ||
| 8 | + * http://www.apache.org/licenses/LICENSE-2.0 | ||
| 9 | + * | ||
| 10 | + * Unless required by applicable law or agreed to in writing, software | ||
| 11 | + * distributed under the License is distributed on an "AS IS" BASIS, | ||
| 12 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| 13 | + * See the License for the specific language governing permissions and | ||
| 14 | + * limitations under the License. | ||
| 15 | + */ | ||
| 16 | + | ||
| 17 | +/** | ||
| 18 | + * Assembly for sending and receiving messages using the I/O loop mechanism. | ||
| 19 | + */ | ||
| 20 | +package org.onlab.nio.service; | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
-
Please register or login to post a comment