All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.adobe.xfa.text.markup.MarkupOut Maven / Gradle / Ivy

The newest version!
//----------------------------------------------------------------------
//
//	ADOBE CONFIDENTIAL
//	__________________
//
//		Copyright 1995 - 2003 Adobe Systems Incorporated.  All
//		Rights Reserved.
//
//		NOTICE:  All information contained herein is, and remains
//		the property of Adobe Systems Incorporated and its
//		suppliers, if any.	The intellectual and technical
//		concepts contained herein are proprietary to Adobe Systems
//		Incorporated and its suppliers and may be covered by U.S.
//		and Foreign Patents, patents in process, and are protected
//		by trade secret or copyright law.  Dissemination of this
//		information or reproduction of this material is strictly
//		forbidden unless prior written permission is obtained from
//		Adobe Systems Incorporated.
//
//----------------------------------------------------------------------

package com.adobe.xfa.text.markup;

import com.adobe.xfa.text.TextMarkupBase;
import com.adobe.xfa.text.TextAttr;
import com.adobe.xfa.text.TextEmbed;
import com.adobe.xfa.text.TextField;


/**
 * This class exists for historical purposes.  It exists in the class
 * hierarchy between TextMkBase and TextMarkupEngineOut, but
 * provides no additional value.  While there are implementations of
 * some virtual methods, they do nothing.  We may eventually remove this
 * class.  Please don't extend it.
 * 

*

* For more information, please see the extenral documentation. *

* * @exclude from published api -- Mike Tardif, May 2006. */ public class MarkupOut extends TextMarkupBase { public void text (String sText) { } public void attr (TextAttr oAttr) { } public void field (TextField poField) { } public void embed (TextEmbed poEmbed) { } public void para () { } public void reset () { } public boolean suppressAttributes () { return false; } protected MarkupOut () { } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy