Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Import directive

The import pragma may be used to import properties from a package.

The import@ pragma may be used to import annotations from a package.

import@ bridge.annotations.*;

Syntax

    ImportDirective :
      import PackageName . *
      import PackageName . IdentifierName
      import Identifier = PackageName . *
      import Identifier = PackageName . IdentifierName
    ImportAnnotationDirective :
      import @ PackageName . *
      import @ PackageName . IdentifierName