summaryrefslogtreecommitdiffstats
blob: 1c6c40466ff9cd93bd75fdc8bd74479341ebd6fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/*
 * Copyright (c) 2015 Tarun Gupta.
 * Licensed under the simplified BSD license.
 * See Documentation/Licenses/BSD-simplified.txt for more information.
 */

package com.isode.stroke.base;

public interface StartStoppable {

	void start();
    void stop();
}