| Developer's Daily | Java Education - Test Projects |
| front page | java | perl | unix | DevDirectory |
public class DogFactory
{
public static Dog getDog(String criteria)
{
if ( criteria.equals("small") )
return new Poodle();
else if ( criteria.equals("big") )
return new Rottweiler();
else if ( criteria.equals("working") )
return new SiberianHusky();
return null;
}
}
|
|
| Copyright © 1998-2003 DevDaily
Interactive, Inc. All Rights Reserved. |
|