/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package org.sleuthkit.autopsy.example; public class ExampleModel { int x; ExampleModel(int x) { this.x = x; } }