2011-12-13 13:16:14 -05:00

16 lines
252 B
Java

/*
* 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;
}
}