analysis.lami: Add tests for the LAMI JSON protocol parsing
[deliverable/tracecompass.git] / analysis / org.eclipse.tracecompass.analysis.lami.core / src / org / eclipse / tracecompass / internal / provisional / analysis / lami / core / types / LamiSize.java
CommitLineData
4208b510
AM
1/*******************************************************************************
2 * Copyright (c) 2016 EfficiOS Inc., Philippe Proulx
3 *
4 * All rights reserved. This program and the accompanying materials are
5 * made available under the terms of the Eclipse Public License v1.0 which
6 * accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
8 *******************************************************************************/
9
10package org.eclipse.tracecompass.internal.provisional.analysis.lami.core.types;
11
ace6413c
MJ
12/**
13 * Class for LAMI 'size' types.
14 *
15 * @author Philippe Proulx
16 */
17public class LamiSize extends LamiInteger {
18
19 /**
20 * Constructor
21 *
22 * @param value
23 * The size value, in bytes
24 */
4208b510
AM
25 public LamiSize(long value) {
26 super(value);
27 }
28}
This page took 0.025731 seconds and 5 git commands to generate.