37383940414243444546
protected ResponseList<T> getTarget() { if(target == null){ try { target = createActualResponseList(); } catch (TwitterException e) { throw new TwitterRuntimeException(e); } } return target; }
45464748495051525354
private QueryResult getTarget() { if (target == null) { try { target = factory.createQueryResult(res, query); } catch (TwitterException e) { throw new TwitterRuntimeException(e); } } return target; }
48495051525354555657
private DirectMessage getTarget() { if (target == null) { try { target = factory.createDirectMessage(res); } catch (TwitterException e) { throw new TwitterRuntimeException(e); } } return target; }
47484950515253545556
private RateLimitStatus getTarget() { if (target == null) { try { target = factory.createRateLimitStatus(res); } catch (TwitterException e) { throw new TwitterRuntimeException(e); } } return target; }
49505152535455565758
private User getTarget() { if (target == null) { try { target = factory.createUser(res); } catch (TwitterException e) { throw new TwitterRuntimeException(e); } } return target; }
private RelatedResults getTarget() { if (target == null) { try { target = factory.createRelatedResults(res); } catch (TwitterException e) { throw new TwitterRuntimeException(e); } } return target; }
private AccountTotals getTarget() { if (target == null) { try { target = factory.createAccountTotals(res); } catch (TwitterException e) { throw new TwitterRuntimeException(e); } } return target; }