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

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

There is a newer version: 2024.11.18751.20241128T090041Z-241100
Show newest version
//----------------------------------------------------------------------
//
// File: mkField.h
//
// Description
//	Public header file for class MkField
//
//		This is a class that helps enumerate embedded fields in a
//		stream It uses the markup translation framework, saving
//		only pointers to embedded fields encountered.  Note that
//		the caller should run the markup with bFlattenFields set
//		to FALSE.
//
// Change history
//	Project 	Release Date	Who 	Review	What
//	HawaiiRd	5.0 	951006	RD				Created.
//
//----------------------------------------------------------------------

package com.adobe.xfa.text.markup;

import java.util.List;

import com.adobe.xfa.text.TextField;


/**
 *
 * @exclude from published api -- Mike Tardif, May 2006.
 */
public class MarkupField extends MarkupOut {
	private final List mpoFieldOut;

	MarkupField (List poFieldOut) {
		mpoFieldOut = poFieldOut;
		mpoFieldOut.clear();
	}

// Inherited from class TextMkOut.
	public void field (TextField poField) {
		mpoFieldOut.add (poField);
	}

	public boolean suppressAttributes () {
		return true;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy