Interface Attack
-
- All Known Implementing Classes:
CanonicalUndercut
,Defeat
,DefeatingRebuttal
,DirectDefeat
,DirectUndercut
,Rebuttal
,Undercut
public interface Attack
This interface is the common interface for notions of attack between two arguments.- Author:
- Matthias Thimm
-
-
Method Summary
Modifier and Type Method Description boolean
isAttackedBy(DeductiveArgument a, DeductiveArgument b)
Returns "true" iff the first argument is attacked by the second argument.
-
-
-
Method Detail
-
isAttackedBy
boolean isAttackedBy(DeductiveArgument a, DeductiveArgument b)
Returns "true" iff the first argument is attacked by the second argument.- Parameters:
a
- some argumentb
- some argument- Returns:
- "true" iff
a
is attacked byb
.
-
-