Created
          July 15, 2009 21:41 
        
      - 
      
 - 
        
Save kellyp/148019 to your computer and use it in GitHub Desktop.  
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | package com.raytheon.javaPrag.hw3; | |
| /** | |
| * | |
| * @author 00v5944 | |
| */ | |
| public class AreaOfInterest extends TargetableArea { | |
| public AreaOfInterest(String description, Target Target) { | |
| this.description = description; | |
| this.Target = Target; | |
| } | |
| /** | |
| * @return the Target | |
| */ | |
| public Target getTarget() { | |
| return Target; | |
| } | |
| } | 
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment