Package net.anotheria.asg.service
Interface ASGService
-
- All Superinterfaces:
net.anotheria.anoprise.metafactory.Service
- All Known Implementing Classes:
AbstractASGService,BaseFixtureService
public interface ASGService extends net.anotheria.anoprise.metafactory.ServiceInterface for the basic ASGService.- Version:
- $Id: $Id
- Author:
- lrosenberg
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddServiceListener(IServiceListener listener)Adds a service listener to this service.booleanhasServiceListeners()Returns true if there are service listeners connected to this service.voidremoveServiceListener(IServiceListener listener)Removes the service listener from the service.
-
-
-
Method Detail
-
addServiceListener
void addServiceListener(IServiceListener listener)
Adds a service listener to this service.- Parameters:
listener- the listener to add.
-
removeServiceListener
void removeServiceListener(IServiceListener listener)
Removes the service listener from the service.- Parameters:
listener- the listener to remove.
-
hasServiceListeners
boolean hasServiceListeners()
Returns true if there are service listeners connected to this service.- Returns:
- true if there are service listeners attached.
-
-