1 package org.simantics.modeling.adapters;
3 import org.simantics.db.Metadata;
4 import org.simantics.db.Session;
7 * A tagging metadata entry that is used for marking a graph transaction as one
8 * that was was at least partly caused by changes made to the change history of
11 * @author Tuukka Lehtonen
13 public class ChangeHistoryUpdated implements Metadata {
16 public byte[] serialise(Session session) {
20 public static ChangeHistoryUpdated deserialise(Session session, byte[] input) {
21 return new ChangeHistoryUpdated();