summaryrefslogtreecommitdiffstats
path: root/EssentialsUpdate/src/f00f/net/irc/martyr/modes/channel/GenericChannelMode.java
blob: d65f850b88c9ff7a59e503838fe916a5106d3770 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package f00f.net.irc.martyr.modes.channel;

import f00f.net.irc.martyr.modes.GenericMode;

/**
 * A generic channel mode will be recorded in the channel, and there
 * will be one per channel.  Modes that can have multiple copies in
 * the channel (masks) should subclass GenericChannelMask.
 */
public abstract class GenericChannelMode extends GenericMode
{
	public boolean recordInChannel()
	{
		return true;
	}
	
	public boolean onePerChannel()
	{
		return true;
	}
}