=== Interface Import Specifiers A *interface import specifier* specifies that the ports of a <> are to be added as members of a <> or a <>. ==== Syntax `import` <> ==== Semantics The qualified identifier must <> a <>. An interface import specifier is resolved to a set _S_ of port interfaces as follows: . Recursively <> named in the specifier. . Let _S_ be the set of port interfaces represented by _D_. ==== Example [source,fpp] ---- @ Interface I interface I { @ Port pIn sync input port pIn: P } @ Interface J { @ Import interface I @ This brings in port pIn import I @ Add port pOut output port pOut: P } @ Component C passive component C { @ Import interface J @ This brings in pIn and pOut import J } ----