Package com.ms.object
 In this topic

*Methods

 

Packages
  PreviousThis PackageNext
Package com.ms.object   Previous This
Package
Next

 


Interface ISite

public interface ISite extends IServiceObjectProvider
{
  // Methods
  public void removeSiteable(ISiteable siteable);
}

This interface defines the removeSiteable method, which is called when an ISiteable object detaches itself from a site.

IServiceObjectProvider
  |
  +--ISite

Methods

removeSiteable

public void removeSiteable(ISiteable siteable);

Notifies the site that the ISiteable object is detaching itself from the site. This notification provides an opportunity for the site to perform any cleanup, such as removing the ISiteable object from its list of objects.

An ISiteable object calls this method whenever its site changes (because the setSite method has been called) or when the ISiteable object is no longer bound to the site.

Return Value:

No return value.

ParameterDescription
siteable The object that is detaching from the site.

upnrm.gif