blob: 5beb18f5d389f3cfc53b3be553cec0ebae7b8fa5 [file] [log] [blame]
/*=============================================================================#
# Copyright (c) 2011, 2018 Stephan Wahlbrink and others.
#
# 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, or the Apache License, Version 2.0
# which is available at https://www.apache.org/licenses/LICENSE-2.0.
#
# SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
#
# Contributors:
# Stephan Wahlbrink <sw@wahlbrink.eu> - initial API and implementation
#=============================================================================*/
package org.eclipse.statet.rj.server.dbg;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import org.eclipse.statet.rj.data.RJIO;
public class ElementTracepointInstallationRequest extends TracepointInstallationRequest {
private final List<? extends ElementTracepointPositions> requests;
public ElementTracepointInstallationRequest(
final List<? extends ElementTracepointPositions> checkedList) {
this.requests= checkedList;
}
public ElementTracepointInstallationRequest(final RJIO io) throws IOException {
final int l= io.readInt();
final List<ElementTracepointPositions> list= new ArrayList<>(l);
for (int i= 0; i < l; i++) {
list.add(new ElementTracepointPositions(io));
}
this.requests= list;
}
@Override
public void writeExternal(final RJIO io) throws IOException {
final int l= this.requests.size();
io.writeInt(l);
for (int i= 0; i < l; i++) {
this.requests.get(i).writeExternal(io);
}
}
public List<? extends ElementTracepointPositions> getRequests() {
return this.requests;
}
}