org.apache.tools.ant.types

Class PatternSet.NameEntry

public class PatternSet.NameEntry extends Object

inner class to hold a name on list. "If" and "Unless" attributes may be used to invalidate the entry based on the existence of a property (typically set thru the use of the Available task) or value of an expression.
Method Summary
StringevalName(Project p)
This validates the name - checks the if and unless properties.
StringgetName()
voidsetIf(Object cond)
Sets the if attribute.
voidsetIf(String cond)
Sets the if attribute.
voidsetName(String name)
Sets the name pattern.
voidsetUnless(Object cond)
Sets the unless attribute.
voidsetUnless(String cond)
Sets the unless attribute.
StringtoString()

Method Detail

evalName

public String evalName(Project p)
This validates the name - checks the if and unless properties.

Parameters: p the current project, used to check the presence or absence of a property.

Returns: the name attribute or null if the "if" or "unless" properties are not/are set.

getName

public String getName()

Returns: the name attribute.

setIf

public void setIf(Object cond)
Sets the if attribute. This attribute and the "unless" attribute are used to validate the name, based on the existence of the property or the value of the evaluated property expression.

Parameters: cond A property name or expression. If the expression evaluates to false or no property of its value is present, the name is invalid.

Since: Ant 1.8.0

setIf

public void setIf(String cond)
Sets the if attribute. This attribute and the "unless" attribute are used to validate the name, based on the existence of the property or the value of the evaluated property expression.

Parameters: cond A property name or expression. If the expression evaluates to false or no property of its value is present, the name is invalid.

setName

public void setName(String name)
Sets the name pattern.

Parameters: name The pattern string.

setUnless

public void setUnless(Object cond)
Sets the unless attribute. This attribute and the "if" attribute are used to validate the name, based on the existence of the property or the value of the evaluated property expression.

Parameters: cond A property name or expression. If the expression evaluates to true or a property of its value is present, the name is invalid.

Since: Ant 1.8.0

setUnless

public void setUnless(String cond)
Sets the unless attribute. This attribute and the "if" attribute are used to validate the name, based on the existence of the property or the value of the evaluated property expression.

Parameters: cond A property name or expression. If the expression evaluates to true or a property of its value is present, the name is invalid.

toString

public String toString()

Returns: a printable form of this object.