aboutsummaryrefslogtreecommitdiffstats
path: root/src/net/miz_hi/smileessence/command/user/UserCommandReply.java
blob: 6883f604605114a45fe97b5bd7746c15435af431 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package net.miz_hi.smileessence.command.user;

import net.miz_hi.smileessence.system.PostSystem;

public class UserCommandReply extends UserCommand
{

	public UserCommandReply(String userName)
	{
		super(userName);
	}

	@Override
	public String getName()
	{
		return "返信";
	}

	@Override
	public void workOnUiThread()
	{
		PostSystem.setReply(userName, -1);
		PostSystem.openPostPage();
	}

}