i need an example in Developer defined package in java i cant find any example about it
as you know there are tow kinds of packages in java as the following definistion
Java Packages: The Java language provides the concept of a package as a way to group a number of related classes.
Types
– Standard Java Packages.
– Developer defined package.
brgd
A “developer defined package” is not some special kind of package. What is meant in the text that you quote is that a “developer defined package” is simply a package other than the packages in the standard Java API (packages named
java.something,javax.somethingetc.).Any package that you create yourself is a “developer defined package”. See this tutorial page to learn about using and creating packages:
The Java Tutorials – Creating and Using Packages