antsnest.antbeans
Class AntBean

java.lang.Object
  extended by antsnest.antbeans.AntBean

public class AntBean
extends Object

Represents the encapsulation of an Ant target

Author:
Chris Clohosy

Constructor Summary
AntBean()
          Constructs the bean
 
Method Summary
 String getDescription()
          Gets the description of the bean
 String getName()
          Gets the name of the bean
 List getPresets()
          Gets the properties that are configured by the creator
 List getProperties()
          Gets the properties that are configured by the user
 List getTaskNames()
          Gets the task names that make up the bean
 void setDescription(String description)
          Sets the description of the bean
 void setName(String name)
          Sets the name of the bean
 void setPresets(List presets)
          Sets the properties that are configured by the creator
 void setProperties(List properties)
          Sets the properties that are configured by the user
 void setTaskNames(List taskNames)
          Sets the task names that make up the bean
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

AntBean

public AntBean()
Constructs the bean

Method Detail

getName

public String getName()
Gets the name of the bean

Returns:
a String, the name

setName

public void setName(String name)
Sets the name of the bean

Parameters:
name - the name of the bean

getDescription

public String getDescription()
Gets the description of the bean

Returns:
a String, the description

setDescription

public void setDescription(String description)
Sets the description of the bean

Parameters:
description - the description

getTaskNames

public List getTaskNames()
Gets the task names that make up the bean

Returns:
a List, the task names

setTaskNames

public void setTaskNames(List taskNames)
Sets the task names that make up the bean

Parameters:
taskNames - the task names

getPresets

public List getPresets()
Gets the properties that are configured by the creator

Returns:
a List, the presets

setPresets

public void setPresets(List presets)
Sets the properties that are configured by the creator

Parameters:
presets - the presets

getProperties

public List getProperties()
Gets the properties that are configured by the user

Returns:
a List, the properties

setProperties

public void setProperties(List properties)
Sets the properties that are configured by the user

Parameters:
properties - the properties