
org.openxmlformats.schemas.spreadsheetml.x2006.main.CTCellProtection Maven / Gradle / Ivy
/*
* XML Type: CT_CellProtection
* Namespace: http://schemas.openxmlformats.org/spreadsheetml/2006/main
* Java type: org.openxmlformats.schemas.spreadsheetml.x2006.main.CTCellProtection
*
* Automatically generated - do not modify.
*/
package org.openxmlformats.schemas.spreadsheetml.x2006.main;
import org.apache.xmlbeans.impl.schema.ElementFactory;
import org.apache.xmlbeans.impl.schema.AbstractDocumentFactory;
import org.apache.xmlbeans.impl.schema.DocumentFactory;
import org.apache.xmlbeans.impl.schema.SimpleTypeFactory;
/**
* An XML CT_CellProtection(@http://schemas.openxmlformats.org/spreadsheetml/2006/main).
*
* This is a complex type.
*/
public interface CTCellProtection extends org.apache.xmlbeans.XmlObject {
DocumentFactory Factory = new DocumentFactory<>(org.apache.poi.schemas.ooxml.system.ooxml.TypeSystemHolder.typeSystem, "ctcellprotectionf524type");
org.apache.xmlbeans.SchemaType type = Factory.getType();
/**
* Gets the "locked" attribute
*/
boolean getLocked();
/**
* Gets (as xml) the "locked" attribute
*/
org.apache.xmlbeans.XmlBoolean xgetLocked();
/**
* True if has "locked" attribute
*/
boolean isSetLocked();
/**
* Sets the "locked" attribute
*/
void setLocked(boolean locked);
/**
* Sets (as xml) the "locked" attribute
*/
void xsetLocked(org.apache.xmlbeans.XmlBoolean locked);
/**
* Unsets the "locked" attribute
*/
void unsetLocked();
/**
* Gets the "hidden" attribute
*/
boolean getHidden();
/**
* Gets (as xml) the "hidden" attribute
*/
org.apache.xmlbeans.XmlBoolean xgetHidden();
/**
* True if has "hidden" attribute
*/
boolean isSetHidden();
/**
* Sets the "hidden" attribute
*/
void setHidden(boolean hidden);
/**
* Sets (as xml) the "hidden" attribute
*/
void xsetHidden(org.apache.xmlbeans.XmlBoolean hidden);
/**
* Unsets the "hidden" attribute
*/
void unsetHidden();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy