blob: 96365371ca0f9cfe4a44c433ff173c79560c9569 [file] [log] [blame]
/*****************************************************************************
* Copyright (c) 2016 CEA LIST.
*
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* David LOPEZ BETANCUR (CEA LIST)
* Sebastien REVOL (CEA LIST)
*
*****************************************************************************/
package org.eclipse.papyrus.moka.datavisualization.profile.custom;
import org.eclipse.papyrus.moka.datavisualization.profile.impl.BooleanSeriesImpl;
import org.eclipse.papyrus.moka.datavisualization.util.VisualizationUtil;
public class CustomBooleanSeries extends BooleanSeriesImpl {
public CustomBooleanSeries() {
// we modify the default value in order to force serialization
binaryString = "";
}
@Override
public String getStringValue(int index) {
return getValues().get(index).toString();
}
@Override
public int getSize() {
return getValues().size();
}
@Override
public void setBinaryString(String newBinaryString) {
VisualizationUtil.initValuesFromBinaryString(this, newBinaryString);
}
@Override
public String getBinaryString() {
return VisualizationUtil.getBinaryString(this);
}
}