com.tngtech.jgiven.config
Class TagConfiguration

java.lang.Object
  extended by com.tngtech.jgiven.config.TagConfiguration

public class TagConfiguration
extends java.lang.Object

Represents the configuration of a tag.

See Also:
for a documentation of the different values.

Nested Class Summary
static class TagConfiguration.Builder
           
 
Constructor Summary
TagConfiguration()
           
 
Method Summary
static TagConfiguration fromIsTag(IsTag isTag)
           
 java.lang.String getColor()
          IsTag.color()
 java.lang.String getCssClass()
          IsTag.cssClass()
 java.lang.String getDefaultValue()
          IsTag.value()
 java.lang.String getDescription()
          IsTag.description()
 java.lang.Class<? extends TagDescriptionGenerator> getDescriptionGenerator()
          IsTag.descriptionGenerator()
 java.lang.String getType()
          IsTag.type()
 boolean isExplodeArray()
          IsTag.explodeArray()
 boolean isIgnoreValue()
          IsTag.ignoreValue()
 boolean isPrependType()
          IsTag.prependType()
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

TagConfiguration

public TagConfiguration()
Method Detail

getDefaultValue

public java.lang.String getDefaultValue()
IsTag.value()

See Also:
IsTag

getDescription

public java.lang.String getDescription()
IsTag.description()

See Also:
IsTag

getDescriptionGenerator

public java.lang.Class<? extends TagDescriptionGenerator> getDescriptionGenerator()
IsTag.descriptionGenerator()

See Also:
IsTag

getType

public java.lang.String getType()
IsTag.type()

See Also:
IsTag

isExplodeArray

public boolean isExplodeArray()
IsTag.explodeArray()

See Also:
IsTag

isIgnoreValue

public boolean isIgnoreValue()
IsTag.ignoreValue()

See Also:
IsTag

isPrependType

public boolean isPrependType()
IsTag.prependType()

See Also:
IsTag

getColor

public java.lang.String getColor()
IsTag.color()

See Also:
IsTag

getCssClass

public java.lang.String getCssClass()
IsTag.cssClass()

See Also:
IsTag

fromIsTag

public static TagConfiguration fromIsTag(IsTag isTag)