197 lines
5.2 KiB
HTML
197 lines
5.2 KiB
HTML
|
|
|
|
|
|
<!DOCTYPE html>
|
|
<html id="htmlId">
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
|
|
<title>Coverage Report > EventCard</title>
|
|
<style type="text/css">
|
|
@import "../../css/coverage.css";
|
|
@import "../../css/idea.min.css";
|
|
</style>
|
|
<script type="text/javascript" src="../../js/highlight.min.js"></script>
|
|
<script type="text/javascript" src="../../js/highlightjs-line-numbers.min.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="content">
|
|
<div class="breadCrumbs">
|
|
Current scope: <a href="../../index.html">all classes</a>
|
|
<span class="separator">|</span>
|
|
<a href="../index.html">it.polimi.ingsw.gc14.Model.Cards.TribeCards</a>
|
|
</div>
|
|
|
|
<h1>Coverage Summary for Class: EventCard (it.polimi.ingsw.gc14.Model.Cards.TribeCards)</h1>
|
|
|
|
<table class="coverageStats">
|
|
<tr>
|
|
<th class="name">Class</th>
|
|
<th class="coverageStat
|
|
">
|
|
Class, %
|
|
</th>
|
|
<th class="coverageStat
|
|
">
|
|
Method, %
|
|
</th>
|
|
<th class="coverageStat
|
|
">
|
|
Line, %
|
|
</th>
|
|
</tr>
|
|
<tr>
|
|
<td class="name">EventCard</td>
|
|
<td class="coverageStat">
|
|
<span class="percent">
|
|
100%
|
|
</span>
|
|
<span class="absValue">
|
|
(1/1)
|
|
</span>
|
|
</td>
|
|
<td class="coverageStat">
|
|
<span class="percent">
|
|
100%
|
|
</span>
|
|
<span class="absValue">
|
|
(5/5)
|
|
</span>
|
|
</td>
|
|
<td class="coverageStat">
|
|
<span class="percent">
|
|
100%
|
|
</span>
|
|
<span class="absValue">
|
|
(7/7)
|
|
</span>
|
|
</td>
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
<br/>
|
|
<br/>
|
|
|
|
|
|
<pre>
|
|
<code class="sourceCode" id="sourceCode"> package it.polimi.ingsw.gc14.Model.Cards.TribeCards;
|
|
|
|
import it.polimi.ingsw.gc14.Model.Cards.TribeCard;
|
|
import it.polimi.ingsw.gc14.Model.Player;
|
|
|
|
import java.util.ArrayList;
|
|
|
|
/**
|
|
* Abstract base class for all event cards.
|
|
* An EventCard is a {@link TribeCard} marked as an event card and associated
|
|
* with a specific {@link EventType}.
|
|
*/
|
|
public abstract class EventCard extends TribeCard {
|
|
|
|
/**
|
|
* The specific type of this event card.
|
|
*/
|
|
private EventType type;
|
|
|
|
/**
|
|
* Returns the type of this event card.
|
|
*
|
|
* @return the type of this event card.
|
|
*/
|
|
<b class="fc"> public EventType getType() { return type; }</b>
|
|
|
|
/**
|
|
* Creates an event card with the specified era and event type.
|
|
*
|
|
* @param era the era of the event card.
|
|
* @param type the type of the event card.
|
|
*/
|
|
public EventCard(int era, EventType type) {
|
|
<b class="fc"> super(era, true);</b>
|
|
<b class="fc"> this.type = type;</b>
|
|
}
|
|
|
|
/**
|
|
* Creates an event card with the specified image id, era and event type.
|
|
*
|
|
* @param idIMG the image identifier of the event card.
|
|
* @param era the era of the event card.
|
|
* @param type the type of the event card.
|
|
*/
|
|
public EventCard(String idIMG, int era, EventType type) {
|
|
<b class="fc"> super(idIMG, era, true);</b>
|
|
<b class="fc"> this.type = type;</b>
|
|
}
|
|
|
|
/**
|
|
* Creates and returns a copy of this event card.
|
|
*
|
|
* @return a clone of this event card.
|
|
*/
|
|
@Override
|
|
public abstract TribeCard clone();
|
|
|
|
/**
|
|
* Returns the string representation of this event card.
|
|
* The returned string includes the string representation of the superclass
|
|
* and the string representation of the event type.
|
|
*
|
|
* @return the string representation of this event card.
|
|
*/
|
|
@Override
|
|
public String toString() {
|
|
<b class="fc"> return super.toString() + " " + type.toString();</b>
|
|
}
|
|
|
|
/**
|
|
* Prints a string representation of this {@code EventCard}. This specific variation is used in the {@code Game}'s
|
|
* toString to print a more detailed version.
|
|
* <p>Includes:
|
|
* <li>{@link #type Type}
|
|
* </p>
|
|
* @return {@code String} - a string representation of this {@code EventCard}.
|
|
* @see it.polimi.ingsw.gc14.Model.Game Game
|
|
* @see it.polimi.ingsw.gc14.Model.GamePackage.Board Board
|
|
*/
|
|
@Override
|
|
public String toStringBoard() {
|
|
<b class="fc"> return super.toStringBoard() + " " + type.toString();</b>
|
|
}
|
|
|
|
/**
|
|
* Activates the effect of this event card on the specified list of players.
|
|
*
|
|
* @param playerList the list of players affected by the event.
|
|
*/
|
|
public abstract void activateEvent (ArrayList <Player> playerList);
|
|
|
|
}
|
|
</code>
|
|
</pre>
|
|
</div>
|
|
|
|
<script type="text/javascript">
|
|
(function() {
|
|
var msie = false, msie9 = false;
|
|
/*@cc_on
|
|
msie = true;
|
|
@if (@_jscript_version >= 9)
|
|
msie9 = true;
|
|
@end
|
|
@*/
|
|
|
|
if (!msie || msie && msie9) {
|
|
hljs.highlightAll()
|
|
hljs.initLineNumbersOnLoad();
|
|
}
|
|
})();
|
|
</script>
|
|
|
|
<div class="footer">
|
|
|
|
<div style="float:right;">generated on 2026-06-14 21:53</div>
|
|
</div>
|
|
</body>
|
|
</html>
|