mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-15 09:17:42 +00:00
Added action class, more to be modified
This commit is contained in:
parent
bda2aea568
commit
ac3ee19a1c
@ -142,6 +142,13 @@ abstract class AddTagAction extends AbstractAction implements Presenter.Popup {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
add(tagAndCommentItem);
|
add(tagAndCommentItem);
|
||||||
|
|
||||||
|
// Create a new menu item for the Bookmark File action
|
||||||
|
/* JMenuItem bookmarkFileActionItem = new JMenuItem(
|
||||||
|
NbBundle.getMessage(this.getClass(), "AddTagAction.bookmarkFile"));
|
||||||
|
bookmarkFileActionItem.addActionListener((ActionEvent e) -> {
|
||||||
|
|
||||||
|
});*/
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
23
Core/src/org/sleuthkit/autopsy/actions/BookmarkFileAction.java
Executable file
23
Core/src/org/sleuthkit/autopsy/actions/BookmarkFileAction.java
Executable file
@ -0,0 +1,23 @@
|
|||||||
|
/*
|
||||||
|
* To change this license header, choose License Headers in Project Properties.
|
||||||
|
* To change this template file, choose Tools | Templates
|
||||||
|
* and open the template in the editor.
|
||||||
|
*/
|
||||||
|
package org.sleuthkit.autopsy.actions;
|
||||||
|
|
||||||
|
import java.awt.event.ActionEvent;
|
||||||
|
import javax.swing.AbstractAction;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @author smori
|
||||||
|
*/
|
||||||
|
public class BookmarkFileAction extends AbstractAction {
|
||||||
|
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void actionPerformed(ActionEvent e) {
|
||||||
|
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user