netbeans - Can I put a java package into another package? -
Using Netbeans, I want to put one package in another package. For example, in Visual Studio 2008, there may be a folder called "nodes", and there is another folder inside the nodes named "Expressions". How can I do this in Netbeans? I think a package in Java is equivalent to a folder in C #.
For packages within the package, enter a parent name, a period, and then name the name like Package of child: nodes. Express
.
It will appear in the IDE itself as a separate package, but the folder hierarchy will be as follows: nodes / expressions / [class etc]
Comments
Post a Comment