Package
From Abap2Java
[edit]
Abap
A package in ABAP is not a syntax element, but a grouping of coding, data definitions etc. By default, classes of all packages are visible in all other packages.
[edit]
Java
The keyword package declares a namespace under which classes are accessible. Without the package declaration the class will belong to the Default package. This is not recommended though. To have unique package names, use your top level domain followed by your domain. Dots in package name represent folders in filesystem. Starting point for every application is the method public static void main(String[] arg) { ... }
package com.abap2java.utils; class Loader { ... }
The folder com/aba2java/utils will contain a file named Loader.java and Loader.class respectively.
See also:
import

