summaryrefslogtreecommitdiffstats
blob: 780892d718e19e8912313c47a937098016c86db1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/*
 * Copyright (c) 2010, Isode Limited, London, England.
 * All rights reserved.
 */

package com.isode.stroke.signals;

/**
 * Bind class for connecting to a signal.
 */
public interface Slot extends BaseSlot {
    void call();
}