summaryrefslogtreecommitdiffstats
blob: e25994caf36ec61aa461c992fad439ce10029ff9 (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
27
28
/*
 * Copyright (c) 2011-2013, Isode Limited, London, England.
 * All rights reserved.
 */
/*
 * Copyright (c) 2011, Kevin Smith.
 * All rights reserved.
 */

package com.isode.stroke.elements;

public class Last extends Payload {
    private int seconds_ = 0;

    public Last() {}

    public Last(final int seconds) {
        setSeconds(seconds);
    }

    public void setSeconds(final int seconds) {
        seconds_ = seconds;
    }

    public int getSeconds() {
        return seconds_;
    }
}