Book a Demo

Author Topic: Components and interfaces  (Read 5994 times)

Roggan

  • EA Novice
  • *
  • Posts: 8
  • Karma: +0/-0
  • I love YaBB 1G - SP1!
    • View Profile
Components and interfaces
« on: December 08, 2004, 12:26:25 am »
Im reading an UML book right now , and according to the book all components realizes an interface of some kind.

im all ok with that when it comes to things like dll/exe files.

but according to the book , a source code file is also a component (with a different steriotype)

what interface does that expose?
or should i just think of it as an made up interface with operations such as "edit","save","open" ?

//Roger

thomaskilian

  • Guest
Re: Components and interfaces
« Reply #1 on: December 08, 2004, 01:59:21 am »
Think simple. The interface for DLLs might be some operations, for EXE this is likely a user interface (or batch functionality). Your source code will likely implement some functionality in the same way. So that should be the realized interface.