From 4cd66830cda1dab11a2219384821974908392017 Mon Sep 17 00:00:00 2001 From: Alexander Fedorov Date: Thu, 14 May 2020 13:47:25 +0300 Subject: [PATCH] #28 Adapt Chronograph for Passage Operator Add Chronograph interface Signed-off-by: Alexander Fedorov --- .../chronograph/internal/api/Chronograph.java | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 bundles/org.eclipse.chronograph.api/src/org/eclipse/chronograph/internal/api/Chronograph.java diff --git a/bundles/org.eclipse.chronograph.api/src/org/eclipse/chronograph/internal/api/Chronograph.java b/bundles/org.eclipse.chronograph.api/src/org/eclipse/chronograph/internal/api/Chronograph.java new file mode 100644 index 0000000..5507fdd --- /dev/null +++ b/bundles/org.eclipse.chronograph.api/src/org/eclipse/chronograph/internal/api/Chronograph.java @@ -0,0 +1,30 @@ +/******************************************************************************* + * Copyright (c) 2020 ArSysOp + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License 2.0 which is available at + * https://www.eclipse.org/legal/epl-2.0/. + * + * SPDX-License-Identifier: EPL-2.0 + * + * Contributors: + * ArSysOp - initial API and implementation + *******************************************************************************/ +package org.eclipse.chronograph.internal.api; + +/** + * Main entry point to an API + * + * @since 0.1 + * + */ +public interface Chronograph { + + /** + * Displays the current object + * + * @param input the object to display + */ + void display(Object input); + +}