For IntelliJ IDEA and
Android Studio


private void myMethod () {}
@Override public int getQueued() { return link.getQueued(); }
private int queued(boolean outgoing) { int count = 0; if (_driver != null) { for (Connector<?> c : _driver.connectors()) { Connection connection = c.getConnection(); for (Link link : new Links(connection, ACTIVE, ANY)) { if (outgoing) { if (link instanceof Sender) count += link.getQueued(); } else { if (link instanceof Receiver) count += link.getQueued(); } } } } return count; }
total += link.getQueued();
@Override public int getQueued() { return link.getQueued(); }