java.lang.Object
org.docx4j.com.microsoft.schemas.office.word.x2006.wordml.CTKeymap
All Implemented Interfaces:
Child

public class CTKeymap extends Object implements Child

Java class for CT_Keymap complex type.

The following schema fragment specifies the expected content contained within this class.

 <complexType name="CT_Keymap">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <choice minOccurs="0">
         <element name="fci" type="{http://schemas.microsoft.com/office/word/2006/wordml}CT_Fci"/>
         <element name="macro" type="{http://schemas.microsoft.com/office/word/2006/wordml}CT_MacroWll"/>
         <element name="acd" type="{http://schemas.microsoft.com/office/word/2006/wordml}CT_AcdKeymap"/>
         <element name="wll" type="{http://schemas.microsoft.com/office/word/2006/wordml}CT_MacroWll"/>
         <element name="wch" type="{http://schemas.microsoft.com/office/word/2006/wordml}CT_LongHexNumber"/>
       </choice>
       <attribute name="chmPrimary" type="{http://schemas.microsoft.com/office/word/2006/wordml}ST_ShortHexNumber" />
       <attribute name="chmSecondary" type="{http://schemas.microsoft.com/office/word/2006/wordml}ST_ShortHexNumber" />
       <attribute name="kcmPrimary" type="{http://schemas.microsoft.com/office/word/2006/wordml}ST_ShortHexNumber" />
       <attribute name="kcmSecondary" type="{http://schemas.microsoft.com/office/word/2006/wordml}ST_ShortHexNumber" />
       <attribute name="mask" type="{http://schemas.microsoft.com/office/word/2006/wordml}ST_OnOff" />
     </restriction>
   </complexContent>
 </complexType>
 
  • Field Details

    • fci

      protected CTFci fci
    • macro

      protected CTMacroWll macro
    • acd

      protected CTAcdKeymap acd
    • wll

      protected CTMacroWll wll
    • wch

      protected CTLongHexNumber wch
    • chmPrimary

      protected byte[] chmPrimary
    • chmSecondary

      protected byte[] chmSecondary
    • kcmPrimary

      protected byte[] kcmPrimary
    • kcmSecondary

      protected byte[] kcmSecondary
    • mask

      protected String mask
  • Constructor Details

    • CTKeymap

      public CTKeymap()
  • Method Details

    • getFci

      public CTFci getFci()
      Gets the value of the fci property.
      Returns:
      possible object is CTFci
    • setFci

      public void setFci(CTFci value)
      Sets the value of the fci property.
      Parameters:
      value - allowed object is CTFci
    • getMacro

      public CTMacroWll getMacro()
      Gets the value of the macro property.
      Returns:
      possible object is CTMacroWll
    • setMacro

      public void setMacro(CTMacroWll value)
      Sets the value of the macro property.
      Parameters:
      value - allowed object is CTMacroWll
    • getAcd

      public CTAcdKeymap getAcd()
      Gets the value of the acd property.
      Returns:
      possible object is CTAcdKeymap
    • setAcd

      public void setAcd(CTAcdKeymap value)
      Sets the value of the acd property.
      Parameters:
      value - allowed object is CTAcdKeymap
    • getWll

      public CTMacroWll getWll()
      Gets the value of the wll property.
      Returns:
      possible object is CTMacroWll
    • setWll

      public void setWll(CTMacroWll value)
      Sets the value of the wll property.
      Parameters:
      value - allowed object is CTMacroWll
    • getWch

      public CTLongHexNumber getWch()
      Gets the value of the wch property.
      Returns:
      possible object is CTLongHexNumber
    • setWch

      public void setWch(CTLongHexNumber value)
      Sets the value of the wch property.
      Parameters:
      value - allowed object is CTLongHexNumber
    • getChmPrimary

      public byte[] getChmPrimary()
      Gets the value of the chmPrimary property.
      Returns:
      possible object is String
    • setChmPrimary

      public void setChmPrimary(byte[] value)
      Sets the value of the chmPrimary property.
      Parameters:
      value - allowed object is String
    • getChmSecondary

      public byte[] getChmSecondary()
      Gets the value of the chmSecondary property.
      Returns:
      possible object is String
    • setChmSecondary

      public void setChmSecondary(byte[] value)
      Sets the value of the chmSecondary property.
      Parameters:
      value - allowed object is String
    • getKcmPrimary

      public byte[] getKcmPrimary()
      Gets the value of the kcmPrimary property.
      Returns:
      possible object is String
    • setKcmPrimary

      public void setKcmPrimary(byte[] value)
      Sets the value of the kcmPrimary property.
      Parameters:
      value - allowed object is String
    • getKcmSecondary

      public byte[] getKcmSecondary()
      Gets the value of the kcmSecondary property.
      Returns:
      possible object is String
    • setKcmSecondary

      public void setKcmSecondary(byte[] value)
      Sets the value of the kcmSecondary property.
      Parameters:
      value - allowed object is String
    • getMask

      public String getMask()
      Gets the value of the mask property.
      Returns:
      possible object is String
    • setMask

      public void setMask(String value)
      Sets the value of the mask property.
      Parameters:
      value - allowed object is String
    • getParent

      public Object getParent()
      Gets the parent object in the object tree representing the unmarshalled xml document.
      Specified by:
      getParent in interface Child
      Returns:
      The parent object.
    • setParent

      public void setParent(Object parent)
      Specified by:
      setParent in interface Child
    • afterUnmarshal

      public void afterUnmarshal(jakarta.xml.bind.Unmarshaller unmarshaller, Object parent)
      This method is invoked by the JAXB implementation on each instance when unmarshalling completes.
      Parameters:
      parent - The parent object in the object tree.
      unmarshaller - The unmarshaller that generated the instance.