コード例 #1
0
 public InboundConnection getWithId(String theId) {
   for (InboundConnection next : myConnections) {
     if (next.getId().equals(theId)) {
       return next;
     }
   }
   return null;
 }