📄 pathtypedriver.java
字号:
package com.esri.solutions.jitk.personalization.data.beans.v1.impl;public class PathTypeDriver implements org.apache.ws.jaxme.impl.JMSAXDriver { public org.xml.sax.helpers.AttributesImpl getAttributes(org.apache.ws.jaxme.impl.JMSAXDriverController pController, java.lang.Object pObject) throws org.xml.sax.SAXException { org.xml.sax.helpers.AttributesImpl _1 = new org.xml.sax.helpers.AttributesImpl(); return _1; } public java.lang.String getPreferredPrefix(java.lang.String pURI) { if (pURI == null) { pURI = ""; } if (pURI.equals("http://www.esri.com/solutions/mvs/v1/geometry")) { return "mvsg"; } return null; } public void marshalChilds(org.apache.ws.jaxme.impl.JMSAXDriverController pController, org.xml.sax.ContentHandler pHandler, java.lang.Object pObject) throws org.xml.sax.SAXException { com.esri.solutions.jitk.personalization.data.beans.v1.PathType _1 = (com.esri.solutions.jitk.personalization.data.beans.v1.PathType) pObject; com.esri.solutions.jitk.personalization.data.beans.v1.ArrayOfPointType _2 = _1.getPointArray(); if (_2 != null) { org.apache.ws.jaxme.impl.JMSAXDriver _3 = pController.getJMMarshaller().getJAXBContextImpl().getManagerS(com.esri.solutions.jitk.personalization.data.beans.v1.ArrayOfPointType.class).getDriver(); pController.marshal(_3, "http://www.esri.com/solutions/mvs/v1/geometry", "PointArray", _1.getPointArray()); } com.esri.solutions.jitk.personalization.data.beans.v1.ArrayOfSegmentType _4 = _1.getSegmentArray(); if (_4 != null) { org.apache.ws.jaxme.impl.JMSAXDriver _5 = pController.getJMMarshaller().getJAXBContextImpl().getManagerS(com.esri.solutions.jitk.personalization.data.beans.v1.ArrayOfSegmentType.class).getDriver(); pController.marshal(_5, "http://www.esri.com/solutions/mvs/v1/geometry", "SegmentArray", _1.getSegmentArray()); } }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -