Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 7392832a7fa5f77774c36639afbcaa2ca400ca82 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*******************************************************************************
 * Copyright (c) 2009 R.Dvorak 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
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     Radek Dvorak - initial API and implementation
 *******************************************************************************/
package org.eclipse.m2m.qvt.oml.debug.core.vm.protocol;


public class VMResumeRequest extends VMRequest {
	
	private static final long serialVersionUID = 7434621076114466548L;
	
	public final int detail;
	
	public VMResumeRequest(int detail) {
		super();
		this.detail = detail;
	}
}

Back to the top