blob: 80c5851382ba79a9b6de1715b6ba91292477db0a [file] [log] [blame]
/*********************************************************************
* Copyright (c) 2013 Boeing
*
* 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:
* Boeing - initial API and implementation
**********************************************************************/
package org.eclipse.ote.statemachine;
public class StateMachineIdFactory {
private int nextInputId = 0;
public int getNextInputId() {
return nextInputId ++;
}
}