/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package com.intuism.ui.form.text.caret; /** * * @author Randahl Fink Isaksen */ public class Insertion { private Integer position; private String text; public Insertion(Integer position, String text) { this.position = position; this.text = text; } public Integer getPosition() { return position; } public String getText() { return text; } }