view src/main/java/christie/remoteTextEditor/Insert.java @ 261:de4962913f24

rm unnecessary file and tweak
author ichikitakahiro <e165713@ie.u-ryukyu.ac.jp>
date Tue, 28 Jan 2020 20:17:10 +0900
parents e6632043c58a
children ed1baf1fb48b
line wrap: on
line source

package christie.remoteTextEditor;

import christie.textEditor.NewTextEditor;

import org.msgpack.annotation.Message;

@Message
class Insert {
    public String string;
    public int fastOffset;
//    int endOffset;
    public Insert () {}

    public Insert (int fastOffset, String string) {
        this.string = string;
        this.fastOffset = fastOffset;
    }


}