aboutsummaryrefslogtreecommitdiffstats
path: root/src/net/miz_hi/smileessence/command/status/StatusCommand.java
blob: 491ef1828afbfc44a7f3f834b0f96b2c7ea5432d (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 net.miz_hi.smileessence.command.status;

import net.miz_hi.smileessence.command.MenuCommand;
import net.miz_hi.smileessence.model.status.tweet.TweetModel;

public abstract class StatusCommand extends MenuCommand
{

    protected final TweetModel status;

    public StatusCommand(TweetModel status)
    {
        if (status == null)
        {
            this.status = TweetModel.getSampleModel();
        }
        else
        {
            this.status = status;
        }
    }

}