From 0d9674b9552a3ea12cf63cf10b2946964108951c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lars=20K=C3=BChne?= Date: Mon, 16 Dec 2002 06:30:17 +0000 Subject: [PATCH] with the delegation approach the PackageNamesBean is obsolete --- .../checkstyle/api/PackageNamesBean.java | 41 ------------------- 1 file changed, 41 deletions(-) delete mode 100644 src/checkstyle/com/puppycrawl/tools/checkstyle/api/PackageNamesBean.java diff --git a/src/checkstyle/com/puppycrawl/tools/checkstyle/api/PackageNamesBean.java b/src/checkstyle/com/puppycrawl/tools/checkstyle/api/PackageNamesBean.java deleted file mode 100644 index b600e9832..000000000 --- a/src/checkstyle/com/puppycrawl/tools/checkstyle/api/PackageNamesBean.java +++ /dev/null @@ -1,41 +0,0 @@ -//////////////////////////////////////////////////////////////////////////////// -// checkstyle: Checks Java source code for adherence to a set of rules. -// Copyright (C) 2001-2002 Oliver Burn -// -// This library is free software; you can redistribute it and/or -// modify it under the terms of the GNU Lesser General Public -// License as published by the Free Software Foundation; either -// version 2.1 of the License, or (at your option) any later version. -// -// This library is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -// Lesser General Public License for more details. -// -// You should have received a copy of the GNU Lesser General Public -// License along with this library; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -//////////////////////////////////////////////////////////////////////////////// -package com.puppycrawl.tools.checkstyle.api; - -/** - * Interface for instantiating objects from a list of packages. - * @author Rick Giles - * @version 5-Dec-2002 - */ -public interface PackageNamesBean -{ - /** - * Sets the package names for instantiating objects. - * @param aPackageNames The list of package names. - */ - void setModuleFactory(String[] aPackageNames); - - /** - * Returns the package names for instantiating objects. - * @return the list of package names. - * @throws CheckstyleException if there is an error. - */ - String[] getModuleFactory() - throws CheckstyleException; -}