com.adobe.xfa.text.StrEnd Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aem-sdk-api Show documentation
Show all versions of aem-sdk-api Show documentation
The Adobe Experience Manager SDK
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");
}
}