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

com.adobe.xfa.text.StrEnd Maven / Gradle / Ivy

There is a newer version: 2024.9.17689.20240905T073330Z-240800
Show newest version
package com.adobe.xfa.text;

/**
 * @exclude from published api.
 */

class StrEnd extends StrItem {
	final static StrEnd defaultImpl = new StrEnd();

	StrEnd () {
		super (TextItem.UNKNOWN);
		setCount (0);
	}

	static StrEnd newObject () {
		return defaultImpl;
	}

	boolean isEqual (StrItem poCompare) {
		return poCompare instanceof StrEnd;
	}

	boolean coalesce (StrItem poAfter, int nIndex) {
		return false;
	}

	boolean canCoalesce (StrItem poAfter) {
		return true;
	}

	StrItem cloneItem (TextGfxSource oGfxSource) {
		return defaultImpl;
	}

// For debugging.
	void debug (int indent) {
		System.out.println (Pkg.doIndent (indent+1) + "End");
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy