I am new to java.My friend asked me this question today And i am looking for an answer to it. How to make the number of class files in a package, constant? i.e., even though one can access that package,they should not be able to add any new class to the exisiting package.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You want sealed packages. Once sealed, all classes from a package must come from the same JAR file. It basically boils down to adding the package to the manifest:
|
|||
|
|
|
This is called sealing the package and works on the level of jar files. From the official trail:
To clarify: Since the classes must come from the same jar file, no one can add classes to your package, since the new classes wouldn't come from your jar file. |
|||
|
|