mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-06 21:00:22 +00:00
16 lines
252 B
Java
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;
|
|
}
|
|
|
|
}
|