/* * [Rendering.java] * * Summary: enumeration of the three ways a rendering a snippet. * * Copyright: (c) 2004-2017 Roedy Green, Canadian Mind Products, http://mindprod.com * * Licence: This software may be copied and used freely for any purpose but military. * http://mindprod.com/contact/nonmil.html * * Requires: JDK 1.8+ * * Created with: JetBrains IntelliJ IDEA IDE http://www.jetbrains.com/idea/ * * Version History: * 4.0 2009-04-12 shorter style names, improved highlighting. */ package com.mindprod.jdisplay; /** * enumeration of the three ways a rendering a snippet. * * @author Roedy Green, Canadian Mind Products * @version 4.0 2009-04-12 shorter style names, improved highlighting. * @see com.mindprod.jdisplayaux.WaysToRender * @since 2007-05-04 */ public enum Rendering { /** * expand all of snippet inline */ INLINE, /** * render snippet in an iframe */ IFRAME, /** * render the *.ser with an Applet */ APPLET }