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

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