blob: 678f8de271adefdec369c9ec442db26451830f29 [file] [log] [blame]
/*
*
* Copyright (c) 2011 - 2017 - Loetz GmbH & Co KG, 69115 Heidelberg, Germany
*
* 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
*
* Initial contribution:
* Loetz GmbH & Co. KG
*
*/
package org.eclipse.osbp.ui.api.datamart;
/**
* The Interface IDualData.
*/
public interface IDualData {
/**
* Gets the selection value.
*
* @return the selection value
*/
String getSelectionValue();
/**
* Sets the selection value.
*
* @param value the new selection value
*/
void setSelectionValue(String value);
/**
* Gets the formatted value.
*
* @return the formatted value
*/
String getFormattedValue();
/**
* Gets the significant value.
*
* @return the significant value
*/
String getSignificantValue();
/**
* Sets the formatted value.
*
* @param formattedValue the new formatted value
*/
void setFormattedValue(String formattedValue);
/**
* Sets the unformatted value.
*
* @param unformattedValue the new unformatted value
*/
void setUnformattedValue(String unformattedValue);
/**
* Gets the hierarchy.
*
* @return the hierarchy
*/
String getHierarchy();
}