Details
-
Bug
-
Status: Resolved
-
Resolution: Done
-
None
-
None
-
None
-
None
-
Operating System: Linux
Platform: PC
-
1101
Description
This:
leaf inclusion-rule {
description "Specify how inheritance will work for this label";
default include;
type enumeration {
enum include
enum exclude
{ description "This label will be excluded from the matching. This allows removing labels that would have otherwise been included because of inheritence rules."; } }
}
becomes this:
public enum InclusionRule {
Include(0),
Exclude(1);
<SNIP>
}
This should have a javadoc comment on both the class as well as on each of the enum values.