blob: ae33f700ad571024bb9c1f678e315e02dac5232a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016 xored software, Inc. and others.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* xored software, Inc. - initial API and implementation
*******************************************************************************/
package org.eclipse.dltk.core.caching;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import org.eclipse.dltk.core.DLTKCore;
import org.eclipse.dltk.core.mixin.IMixinRequestor;
public class MixinModelCollector extends AbstractDataSaver implements
IMixinRequestor {
@Override
public void reportElement(ElementInfo info) {
try {
if (info != null && info.key != null) {
writeString(info.key);
}
} catch (IOException e) {
}
}
public byte[] getBytes() {
final ByteArrayOutputStream stream = new ByteArrayOutputStream();
try {
saveTo(stream);
} catch (IOException e) {
if (DLTKCore.DEBUG) {
e.printStackTrace();
}
}
return stream.toByteArray();
}
}