1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-05 07:15:39 +02:00

Fixes for M6 build.

This commit is contained in:
Doug Schaefer 2010-03-13 17:53:41 +00:00
parent 0613a1b069
commit 68dea21be0

View file

@ -125,10 +125,16 @@ public interface IFormattedValues extends IDsfService {
return fValue; return fValue;
} }
/**
* @since 2.1
*/
public void setEditableValue(String editableValue) { public void setEditableValue(String editableValue) {
fEditableValue = editableValue; fEditableValue = editableValue;
} }
/**
* @since 2.1
*/
public String getEditableValue() { public String getEditableValue() {
return fEditableValue; return fEditableValue;
} }