Package ca.cgjennings.apps.arkham.diy
Interface VerbalDesignSupportAdapter.DesignAnalyzer
-
- Enclosing class:
- VerbalDesignSupportAdapter
public static interface VerbalDesignSupportAdapter.DesignAnalyzer
An interface that represents the script function passed to the adapter. This function performs the function ofAbstractVerbalDesignSupport.analyze(ca.cgjennings.apps.arkham.component.GameComponent, java.lang.StringBuilder)
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
analyze(GameComponent gc, java.lang.StringBuilder b)
Analyzes the component and appends a verbal description to the supplied string builder.
-
-
-
Method Detail
-
analyze
boolean analyze(GameComponent gc, java.lang.StringBuilder b)
Analyzes the component and appends a verbal description to the supplied string builder.- Parameters:
gc
- the component to analyzeb
- a buffer to use to build up the description- Returns:
true
if the design is considered valid,false
otherwise
-
-