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

com.adobe.xfa.gfx.GFXTextContext Maven / Gradle / Ivy

There is a newer version: 2024.11.18751.20241128T090041Z-241100
Show newest version
/*
 *	ADOBE CONFIDENTIAL
 *
 *	Copyright 1995 - 2006 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.gfx;


/**
 * The text context allows the client to manage different text
 * attributes--attributes that are outside the scope of functionality
 * provided by XGA.  This class is intended to represent font
 * extensions.
 * 

* The client can attach a text context pointer to a text attribute * (jfGfxTextAttr) instance. This will get passed through intermediate * layers and eventually find its way back to the client's * implementation of the graphic driver, where the client can act on it * accordingly. *

* @exclude from published api. */ public abstract class GFXTextContext implements GFXContext { static public boolean match (GFXTextContext c1, GFXTextContext c2) { if (c1 == c2) { return true; } if ((c1 == null) || (c2 == null)) { return false; } return c1.equals (c2); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy