package com.sforce.soap.metadata; /** * This is a generated class for the SObject Enterprise API. * Do not edit this file, as your changes will be lost. */ public class DashboardFlexTableComponentProperties implements com.sforce.ws.bind.XMLizable { /** * Constructor */ public DashboardFlexTableComponentProperties() {} /* Cache the typeInfo instead of declaring static fields throughout*/ private transient java.util.Map typeInfoCache = new java.util.HashMap(); private com.sforce.ws.bind.TypeInfo _lookupTypeInfo(String fieldName, String namespace, String name, String typeNS, String type, int minOcc, int maxOcc, boolean elementForm) { com.sforce.ws.bind.TypeInfo typeInfo = typeInfoCache.get(fieldName); if (typeInfo == null) { typeInfo = new com.sforce.ws.bind.TypeInfo(namespace, name, typeNS, type, minOcc, maxOcc, elementForm); typeInfoCache.put(fieldName, typeInfo); } return typeInfo; } /** * element : decimalPrecision of type {http://www.w3.org/2001/XMLSchema}int * java type: int */ private boolean decimalPrecision__is_set = false; private int decimalPrecision; public int getDecimalPrecision() { return decimalPrecision; } public void setDecimalPrecision(int decimalPrecision) { this.decimalPrecision = decimalPrecision; decimalPrecision__is_set = true; } protected void setDecimalPrecision(com.sforce.ws.parser.XmlInputStream __in, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException { __in.peekTag(); if (__typeMapper.isElement(__in, _lookupTypeInfo("decimalPrecision", "http://soap.sforce.com/2006/04/metadata","decimalPrecision","http://www.w3.org/2001/XMLSchema","int",0,1,true))) { setDecimalPrecision((int)__typeMapper.readInt(__in, _lookupTypeInfo("decimalPrecision", "http://soap.sforce.com/2006/04/metadata","decimalPrecision","http://www.w3.org/2001/XMLSchema","int",0,1,true), int.class)); } } private void writeFieldDecimalPrecision(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException { __typeMapper.writeObject(__out, _lookupTypeInfo("decimalPrecision", "http://soap.sforce.com/2006/04/metadata","decimalPrecision","http://www.w3.org/2001/XMLSchema","int",0,1,true), decimalPrecision, decimalPrecision__is_set); } /** * element : flexTableColumn of type {http://soap.sforce.com/2006/04/metadata}DashboardComponentColumn * java type: com.sforce.soap.metadata.DashboardComponentColumn[] */ private boolean flexTableColumn__is_set = false; private com.sforce.soap.metadata.DashboardComponentColumn[] flexTableColumn = new com.sforce.soap.metadata.DashboardComponentColumn[0]; public com.sforce.soap.metadata.DashboardComponentColumn[] getFlexTableColumn() { return flexTableColumn; } public void setFlexTableColumn(com.sforce.soap.metadata.DashboardComponentColumn[] flexTableColumn) { this.flexTableColumn = flexTableColumn; flexTableColumn__is_set = true; } protected void setFlexTableColumn(com.sforce.ws.parser.XmlInputStream __in, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException { __in.peekTag(); if (__typeMapper.isElement(__in, _lookupTypeInfo("flexTableColumn", "http://soap.sforce.com/2006/04/metadata","flexTableColumn","http://soap.sforce.com/2006/04/metadata","DashboardComponentColumn",0,-1,true))) { setFlexTableColumn((com.sforce.soap.metadata.DashboardComponentColumn[])__typeMapper.readObject(__in, _lookupTypeInfo("flexTableColumn", "http://soap.sforce.com/2006/04/metadata","flexTableColumn","http://soap.sforce.com/2006/04/metadata","DashboardComponentColumn",0,-1,true), com.sforce.soap.metadata.DashboardComponentColumn[].class)); } } private void writeFieldFlexTableColumn(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException { __typeMapper.writeObject(__out, _lookupTypeInfo("flexTableColumn", "http://soap.sforce.com/2006/04/metadata","flexTableColumn","http://soap.sforce.com/2006/04/metadata","DashboardComponentColumn",0,-1,true), flexTableColumn, flexTableColumn__is_set); } /** * element : flexTableSortInfo of type {http://soap.sforce.com/2006/04/metadata}DashboardComponentSortInfo * java type: com.sforce.soap.metadata.DashboardComponentSortInfo */ private boolean flexTableSortInfo__is_set = false; private com.sforce.soap.metadata.DashboardComponentSortInfo flexTableSortInfo; public com.sforce.soap.metadata.DashboardComponentSortInfo getFlexTableSortInfo() { return flexTableSortInfo; } public void setFlexTableSortInfo(com.sforce.soap.metadata.DashboardComponentSortInfo flexTableSortInfo) { this.flexTableSortInfo = flexTableSortInfo; flexTableSortInfo__is_set = true; } protected void setFlexTableSortInfo(com.sforce.ws.parser.XmlInputStream __in, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException { __in.peekTag(); if (__typeMapper.isElement(__in, _lookupTypeInfo("flexTableSortInfo", "http://soap.sforce.com/2006/04/metadata","flexTableSortInfo","http://soap.sforce.com/2006/04/metadata","DashboardComponentSortInfo",0,1,true))) { setFlexTableSortInfo((com.sforce.soap.metadata.DashboardComponentSortInfo)__typeMapper.readObject(__in, _lookupTypeInfo("flexTableSortInfo", "http://soap.sforce.com/2006/04/metadata","flexTableSortInfo","http://soap.sforce.com/2006/04/metadata","DashboardComponentSortInfo",0,1,true), com.sforce.soap.metadata.DashboardComponentSortInfo.class)); } } private void writeFieldFlexTableSortInfo(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException { __typeMapper.writeObject(__out, _lookupTypeInfo("flexTableSortInfo", "http://soap.sforce.com/2006/04/metadata","flexTableSortInfo","http://soap.sforce.com/2006/04/metadata","DashboardComponentSortInfo",0,1,true), flexTableSortInfo, flexTableSortInfo__is_set); } /** * element : hideChatterPhotos of type {http://www.w3.org/2001/XMLSchema}boolean * java type: boolean */ private boolean hideChatterPhotos__is_set = false; private boolean hideChatterPhotos; public boolean getHideChatterPhotos() { return hideChatterPhotos; } public boolean isHideChatterPhotos() { return hideChatterPhotos; } public void setHideChatterPhotos(boolean hideChatterPhotos) { this.hideChatterPhotos = hideChatterPhotos; hideChatterPhotos__is_set = true; } protected void setHideChatterPhotos(com.sforce.ws.parser.XmlInputStream __in, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException { __in.peekTag(); if (__typeMapper.isElement(__in, _lookupTypeInfo("hideChatterPhotos", "http://soap.sforce.com/2006/04/metadata","hideChatterPhotos","http://www.w3.org/2001/XMLSchema","boolean",0,1,true))) { setHideChatterPhotos(__typeMapper.readBoolean(__in, _lookupTypeInfo("hideChatterPhotos", "http://soap.sforce.com/2006/04/metadata","hideChatterPhotos","http://www.w3.org/2001/XMLSchema","boolean",0,1,true), boolean.class)); } } private void writeFieldHideChatterPhotos(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException { __typeMapper.writeObject(__out, _lookupTypeInfo("hideChatterPhotos", "http://soap.sforce.com/2006/04/metadata","hideChatterPhotos","http://www.w3.org/2001/XMLSchema","boolean",0,1,true), hideChatterPhotos, hideChatterPhotos__is_set); } /** * element : useReportTableSetting of type {http://www.w3.org/2001/XMLSchema}boolean * java type: boolean */ private boolean useReportTableSetting__is_set = false; private boolean useReportTableSetting; public boolean getUseReportTableSetting() { return useReportTableSetting; } public boolean isUseReportTableSetting() { return useReportTableSetting; } public void setUseReportTableSetting(boolean useReportTableSetting) { this.useReportTableSetting = useReportTableSetting; useReportTableSetting__is_set = true; } protected void setUseReportTableSetting(com.sforce.ws.parser.XmlInputStream __in, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException { __in.peekTag(); if (__typeMapper.isElement(__in, _lookupTypeInfo("useReportTableSetting", "http://soap.sforce.com/2006/04/metadata","useReportTableSetting","http://www.w3.org/2001/XMLSchema","boolean",0,1,true))) { setUseReportTableSetting(__typeMapper.readBoolean(__in, _lookupTypeInfo("useReportTableSetting", "http://soap.sforce.com/2006/04/metadata","useReportTableSetting","http://www.w3.org/2001/XMLSchema","boolean",0,1,true), boolean.class)); } } private void writeFieldUseReportTableSetting(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException { __typeMapper.writeObject(__out, _lookupTypeInfo("useReportTableSetting", "http://soap.sforce.com/2006/04/metadata","useReportTableSetting","http://www.w3.org/2001/XMLSchema","boolean",0,1,true), useReportTableSetting, useReportTableSetting__is_set); } /** */ @Override public void write(javax.xml.namespace.QName __element, com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException { __out.writeStartTag(__element.getNamespaceURI(), __element.getLocalPart()); writeFields(__out, __typeMapper); __out.writeEndTag(__element.getNamespaceURI(), __element.getLocalPart()); } protected void writeFields(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException { writeFields1(__out, __typeMapper); } @Override public void load(com.sforce.ws.parser.XmlInputStream __in, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException { __typeMapper.consumeStartTag(__in); loadFields(__in, __typeMapper); __typeMapper.consumeEndTag(__in); } protected void loadFields(com.sforce.ws.parser.XmlInputStream __in, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException { loadFields1(__in, __typeMapper); } @Override public String toString() { java.lang.StringBuilder sb = new java.lang.StringBuilder(); sb.append("[DashboardFlexTableComponentProperties "); toString1(sb); sb.append("]\n"); return sb.toString(); } private void toStringHelper(StringBuilder sb, String name, Object value) { sb.append(' ').append(name).append("='").append(com.sforce.ws.util.Verbose.toString(value)).append("'\n"); } private void writeFields1(com.sforce.ws.parser.XmlOutputStream __out, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException { writeFieldDecimalPrecision(__out, __typeMapper); writeFieldFlexTableColumn(__out, __typeMapper); writeFieldFlexTableSortInfo(__out, __typeMapper); writeFieldHideChatterPhotos(__out, __typeMapper); writeFieldUseReportTableSetting(__out, __typeMapper); } private void loadFields1(com.sforce.ws.parser.XmlInputStream __in, com.sforce.ws.bind.TypeMapper __typeMapper) throws java.io.IOException, com.sforce.ws.ConnectionException { setDecimalPrecision(__in, __typeMapper); setFlexTableColumn(__in, __typeMapper); setFlexTableSortInfo(__in, __typeMapper); setHideChatterPhotos(__in, __typeMapper); setUseReportTableSetting(__in, __typeMapper); } private void toString1(StringBuilder sb) { toStringHelper(sb, "decimalPrecision", decimalPrecision); toStringHelper(sb, "flexTableColumn", flexTableColumn); toStringHelper(sb, "flexTableSortInfo", flexTableSortInfo); toStringHelper(sb, "hideChatterPhotos", hideChatterPhotos); toStringHelper(sb, "useReportTableSetting", useReportTableSetting); } }