1 package org.catacomb.interlish.structure;
2
3 import org.catacomb.interlish.content.DoubleValue;
4
5
6 public interface DoubleValueEditor {
7
8 public void setDoubleValue(DoubleValue dv); // ADHOC dependence on content;
9
10 }