()
| 437 | } |
| 438 | |
| 439 | public boolean hasAlias(){ |
| 440 | return mAlias != null && !mAlias.isEmpty(); |
| 441 | } |
| 442 | |
| 443 | public boolean comesAfter(Target target){ |
| 444 | return mType != Type.NETWORK && (mType != Type.ENDPOINT || target.getType() == Type.ENDPOINT && mEndpoint.getAddressAsLong() > target.getEndpoint().getAddressAsLong()); |
no test coverage detected