home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgLangD.iso / VCAFE.3.0A / Main.bin / SourceFileAdapter.java < prev    next >
Text File  |  1998-10-25  |  871b  |  27 lines

  1. /*
  2.  * Copyright 1998 Symantec Corporation, All Rights Reserved.
  3.  */
  4.  
  5. package com.symantec.itools.vcafe.openapi;
  6.  
  7.  
  8. /**
  9.  * A convenience class to assist in creating a <code>SourceFileListener</code>.
  10.  * The methods in this class are empty.  To easily create <code>SourceFileListener</code>,
  11.  * extend this class and override only the methods of interest.
  12.  *
  13.  * @see SourceFileListener
  14.  *
  15.  * @author Symantec Internet Tools Division
  16.  * @version 1.0
  17.  * @since VCafe 3.0
  18.  */
  19. public class SourceFileAdapter implements SourceFileListener
  20. {
  21.     public void sourceFileReverted(SourceFile sourceFile) {}
  22.     public void aboutToSaveSourceFile(SourceFile sourceFile) {}
  23.     public void doneSavingSourceFile(SourceFile sourceFile) {}
  24.     public void sourceFileChanged(SourceFile sourceFile, int reason) {}
  25.     public void sourceFileChangeUndone(SourceFile sourceFile) {}
  26. }
  27.