with the delegation approach the PackageNamesBean is obsolete

This commit is contained in:
Lars Kühne 2002-12-16 06:30:17 +00:00
parent 88e89a138a
commit 0d9674b955
1 changed files with 0 additions and 41 deletions

View File

@ -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;
}