1 // Copyright 2003, FreeHEP 2 package org.freehep.graphicsio.exportchooser; 3 4 import java.util.Properties; 5 6 /** 7 * 8 * @author Mark Donszelmann 9 * @version $Id: Options.java 8584 2006-08-10 23:06:37Z duns $ 10 */ 11 public interface Options { 12 13 /** 14 * Sets all the changed options in the properties object. 15 * 16 * @return true if any options were set 17 */ 18 public boolean applyChangedOptions(Properties options); 19 }