Remove documentation for implemented ideas.

This commit is contained in:
Oliver Burn 2005-08-03 13:37:07 +00:00
parent ec4f7b40c6
commit 46b4a93da5
1 changed files with 0 additions and 12 deletions

View File

@ -30,18 +30,6 @@ import org.apache.commons.beanutils.ConversionException;
* for ensuring that application layering is not violated. Ideas on how the
* check can be improved include support for:
* <ul>
* <li>Having guards for importing of classes.
*
* <li>Guards that only apply locally. That is, the Guard does not apply to
* subpackages. For example, allow the package "com.foo" to import the
* package "java.swing", but not allow subpackages like "com.foo.bar".
* Currently you can work around this by having disallow guards specified
* in the subpackages.
*
* <li>Guards that match packages exactly. For example, only match imports
* from the "com.foo" package, and not from subpackages like
* "com.foo.bar".
*
* <li>Change the default policy that if a package being checked does not
* match any guards, then it is allowed. Currently defaults to disallowed.
*