|
Lines 113-119
Link Here
|
| 113 |
int modifiers = delta.getNewModifiers(); |
113 |
int modifiers = delta.getNewModifiers(); |
| 114 |
if (Flags.isPublic(modifiers)) { |
114 |
if (Flags.isPublic(modifiers)) { |
| 115 |
switch(delta.getFlags()) { |
115 |
switch(delta.getFlags()) { |
| 116 |
case IDelta.DEPRECATION : |
|
|
| 117 |
case IDelta.TYPE_MEMBER : |
116 |
case IDelta.TYPE_MEMBER : |
| 118 |
case IDelta.METHOD : |
117 |
case IDelta.METHOD : |
| 119 |
case IDelta.CONSTRUCTOR : |
118 |
case IDelta.CONSTRUCTOR : |
|
Lines 135-141
Link Here
|
| 135 |
} |
134 |
} |
| 136 |
} else if (Flags.isProtected(modifiers) && !RestrictionModifiers.isExtendRestriction(delta.getRestrictions())) { |
135 |
} else if (Flags.isProtected(modifiers) && !RestrictionModifiers.isExtendRestriction(delta.getRestrictions())) { |
| 137 |
switch(delta.getFlags()) { |
136 |
switch(delta.getFlags()) { |
| 138 |
case IDelta.DEPRECATION : |
|
|
| 139 |
case IDelta.TYPE_MEMBER : |
137 |
case IDelta.TYPE_MEMBER : |
| 140 |
case IDelta.METHOD : |
138 |
case IDelta.METHOD : |
| 141 |
case IDelta.CONSTRUCTOR : |
139 |
case IDelta.CONSTRUCTOR : |
|
Lines 164-176
Link Here
|
| 164 |
} |
162 |
} |
| 165 |
} |
163 |
} |
| 166 |
break; |
164 |
break; |
| 167 |
case IDelta.REMOVED : |
|
|
| 168 |
switch(delta.getFlags()) { |
| 169 |
case IDelta.DEPRECATION : |
| 170 |
if (!checkExclude(delta)) { |
| 171 |
super.processLeafDelta(delta); |
| 172 |
} |
| 173 |
} |
| 174 |
} |
165 |
} |
| 175 |
} else { |
166 |
} else { |
| 176 |
switch(delta.getKind()) { |
167 |
switch(delta.getKind()) { |