001 package com.croftsoft.core.text.sml; 002 003 /********************************************************************* 004 * Interface for Objects that can generate an SmlNode representation. 005 * 006 * <p> 007 * Java 1.1 compatible. 008 * </p> 009 * 010 * @version 011 * 2001-05-31 012 * @since 013 * 2001-05-31 014 * @author 015 * <a href="https://www.croftsoft.com/">David W. Croft</a> 016 *********************************************************************/ 017 018 public interface SmlNodeConvertible 019 ////////////////////////////////////////////////////////////////////// 020 ////////////////////////////////////////////////////////////////////// 021 { 022 023 public SmlNode toSmlNode ( ); 024 025 ////////////////////////////////////////////////////////////////////// 026 ////////////////////////////////////////////////////////////////////// 027 }