Class TLspBingMapsCopyrightIcon

java.lang.Object
com.luciad.format.bingmaps.copyright.TLcdBingMapsCopyrightIcon
com.luciad.format.bingmaps.copyright.lightspeed.TLspBingMapsCopyrightIcon
All Implemented Interfaces:
ILcdIcon, ILcdChangeSource, ILcdCloneable, Serializable, Cloneable

public class TLspBingMapsCopyrightIcon extends TLcdBingMapsCopyrightIcon
Icon to display copyright info for an ILspView
Since:
2012.1
See Also:
  • Constructor Details

    • TLspBingMapsCopyrightIcon

      public TLspBingMapsCopyrightIcon(ILspView aView)
      Creates a new Bing maps copyright icon that will automatically be kept consistent with the passed view
      Parameters:
      aView - the view for which the icon will display copyright information
  • Method Details

    • clone

      public Object clone()
      Description copied from interface: ILcdCloneable

      Makes Object.clone() public.

      When for example extending from java.lang.Object, it can be implemented like this:
      
       public Object clone() {
         try {
           return super.clone();
         } catch ( CloneNotSupportedException e ) {
           // Cannot happen: extends from Object and implements Cloneable (see also Object.clone)
           throw new RuntimeException( e );
         }
       }
       
      Specified by:
      clone in interface ILcdCloneable
      Overrides:
      clone in class TLcdBingMapsCopyrightIcon
      See Also: