Class SetSupport
- java.lang.Object
-
- org.tweetyproject.graphs.Edge<T>
-
- org.tweetyproject.graphs.DirectedEdge<BipolarEntity>
-
- org.tweetyproject.arg.bipolar.syntax.SetSupport
-
- All Implemented Interfaces:
BipolarEntity,Support,DungEntity,Formula,Node
public class SetSupport extends DirectedEdge<BipolarEntity> implements Support
This class models a support between a set of arguments and an argument. It comprises of a set ofBArgumentand is used by bipolar abstract argumentation theories.- Author:
- Lars Bengel
-
-
Constructor Summary
Constructors Constructor Description SetSupport(java.util.Collection<BArgument> supporter, BArgument supported)initializes the arguments used in this support relationSetSupport(ArgumentSet supporter, BArgument supported)Default constructor; initializes the arguments used in this support relationSetSupport(BArgument supporter, BArgument supported)initializes the arguments used in this support relation
-
Method Summary
Modifier and Type Method Description booleancontains(java.lang.Object o)booleancontains(BArgument argument)Return true if the given argument is in this support relation.booleanequals(java.lang.Object o)LdoFormulagetLdoFormula()Returns a logical representation of this entity in LDO (Logic of dialectical outcomes, cf.SignaturegetSignature()Returns the signature of the language of this formula.BArgumentgetSupported()returns the supported argument of this support relation.ArgumentSetgetSupporter()returns the supporting set of arguments of this support relation.inthashCode()java.lang.StringtoString()
-
-
-
Constructor Detail
-
SetSupport
public SetSupport(ArgumentSet supporter, BArgument supported)
Default constructor; initializes the arguments used in this support relation- Parameters:
supporter- the supporting set of argumentssupported- the supported argument
-
SetSupport
public SetSupport(java.util.Collection<BArgument> supporter, BArgument supported)
initializes the arguments used in this support relation- Parameters:
supporter- a collection of argumentssupported- some argument
-
-
Method Detail
-
getSupported
public BArgument getSupported()
returns the supported argument of this support relation.- Specified by:
getSupportedin interfaceSupport- Returns:
- the supported argument of this support relation.
-
getSupporter
public ArgumentSet getSupporter()
returns the supporting set of arguments of this support relation.- Specified by:
getSupporterin interfaceSupport- Returns:
- the supporting set of arguments of this support relation.
-
contains
public boolean contains(BArgument argument)
Return true if the given argument is in this support relation.- Parameters:
argument- some argument- Returns:
- true if the given argument is in this support relation.
-
toString
public java.lang.String toString()
- Specified by:
toStringin interfaceSupport- Overrides:
toStringin classDirectedEdge<BipolarEntity>
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classEdge<BipolarEntity>
-
hashCode
public int hashCode()
- Overrides:
hashCodein classEdge<BipolarEntity>
-
contains
public boolean contains(java.lang.Object o)
- Specified by:
containsin interfaceBipolarEntity
-
getLdoFormula
public LdoFormula getLdoFormula()
Description copied from interface:DungEntityReturns a logical representation of this entity in LDO (Logic of dialectical outcomes, cf. [Hunter, Thimm, 2015])- Specified by:
getLdoFormulain interfaceDungEntity- Returns:
- the logical formula of this entity.
-
getSignature
public Signature getSignature()
Description copied from interface:FormulaReturns the signature of the language of this formula.- Specified by:
getSignaturein interfaceFormula- Returns:
- the signature of the language of this formula.
-
-