blob: 4c3bbf41076432c74be7f1013f5424f5427e406e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2007 Boeing.
* 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
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Boeing - initial API and implementation
*******************************************************************************/
package org.eclipse.ote.bytemessage;
import org.eclipse.osee.ote.message.enums.DataType;
public enum OteByteMessageType implements DataType {
OTE_BYTE_MESSAGE(2, 2048);
private final int depth;
private final int bufferSize;
private OteByteMessageType(int depth, int bufferSize) {
this.depth = depth;
this.bufferSize = bufferSize;
}
@Override
public int getToolingBufferSize() {
return bufferSize;
}
@Override
public int getToolingDepth() {
return depth;
}
}