Skip to content

Instantly share code, notes, and snippets.

@kellyp
Created July 15, 2009 21:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kellyp/148018 to your computer and use it in GitHub Desktop.
Save kellyp/148018 to your computer and use it in GitHub Desktop.
package com.raytheon.javaPrag.hw3;
/**
*
* @author 00v5944
*/
public abstract class TargetableArea implements Targetable{
protected String description; // description of area
protected Target Target;
/**
* @return the description
*/
public String getDescription() {
return description;
}
/**
* @param description the description to set
*/
public void setDescription(String description) {
this.description = description;
}
/**
* @return the Target
*/
public abstract Target getTarget();
/**
* @param Target the Target to set
*/
public void setTarget(Target Target) {
this.Target = Target;
}
} // End of Code
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment