fix copyright header, javadoc, and warnings

This commit is contained in:
2021-01-09 12:43:02 +01:00
parent d970d07048
commit eb64cc60c5
41 changed files with 1856 additions and 541 deletions

View File

@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2015 MINRES Technologies GmbH and others.
* Copyright (c) 2015 - 2020 MINRES Technologies GmbH and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@ -12,9 +12,22 @@ package com.minres.scviewer.database.tx;
import com.minres.scviewer.database.IEvent;
/**
* The Interface ITxEvent.
*/
public interface ITxEvent extends IEvent {
/**
* Gets the time.
*
* @return the time
*/
public Long getTime();
public ITx getTransaction();
/**
* Gets the transaction.
*
* @return the transaction
*/
public ITx getTransaction();
}