Why javax.media.Manager has no constructor?
I don't get why it's ok to call javax.media.Manager.createPlayer(), for example, and not have to create a new instance of it.
I don't get why it's ok to call javax.media.Manager.createPlayer(), for example, and not have to create a new instance of it.
All the methods in Manager are static and there is no purpose in having a different instance of Manager for each application
Oh - OK. Thanks!
gene