View Javadoc
1 /************************************************************ 2 * Copyright * 3 * Portions of this software are Copyright (c) 1993 - 2002, * 4 * Chad Z. Hower (Kudzu) and the Indy Pit Crew * 5 * - http://www.nevrona.com/Indy/ * 6 ************************************************************/ 7 package org.indy; 8 9 /*** 10 * DOCUMENT ME! 11 * 12 * @version $Revision$ 13 * @author $author$ 14 */ 15 public class DefaultPeerThreadFactory implements PeerThreadFactory { 16 /*** 17 * Creates a new DefaultPeerThreadFactory object. 18 */ 19 public DefaultPeerThreadFactory() { 20 } 21 22 /*** 23 * DOCUMENT ME! 24 * 25 * @return DOCUMENT ME! 26 */ 27 public PeerThread newThread() { 28 return new PeerThread(); 29 } 30 }

This page was automatically generated by Maven