Home
last modified time | relevance | path

Searched refs:m_oIntrospector (Results 1 – 4 of 4) sorted by relevance

/trunk/main/odk/examples/java/Inspector/
H A DInspectorPane.java49 private Introspector m_oIntrospector = null; field in InspectorPane
62 m_oIntrospector = Introspector.getIntrospector(m_xComponentContext); in InspectorPane()
70 xIdlMethods = m_oIntrospector.getMethods(_oUnoObject); in setMaximumOfProgressBar()
71 aProperties = m_oIntrospector.getProperties(_oUnoObject); in setMaximumOfProgressBar()
107 if (m_oIntrospector.isArray(_oUnoObject)){ in getTypes()
111 aTypes = m_oIntrospector.getInterfaces(_oUnoObject); in getTypes()
140 … String sShortClassName = m_oIntrospector.getShortClassName(aReturnObject.getType().getTypeName()); in invoke()
143 if (m_oIntrospector.isArray(oUnoReturnObject)){ in invoke()
144 if (m_oIntrospector.isUnoTypeObject(oUnoReturnObject)){ in invoke()
147 else if(m_oIntrospector.isUnoPropertyTypeObject(oUnoReturnObject)){ in invoke()
[all …]
H A DSourceCodeGenerator.java60 private Introspector m_oIntrospector; field in SourceCodeGenerator
72 m_oIntrospector = Introspector.getIntrospector(); in SourceCodeGenerator()
398 if (m_oIntrospector.isObjectPrimitive(oUnoObject)){ in isVariableDeclared()
401 else if (m_oIntrospector.isObjectSequence(oUnoObject)){ in isVariableDeclared()
517 bIsArray = m_oIntrospector.isObjectSequence(_oUnoObjectDefinition.getUnoObject()); in getVariableDeclaration()
617 String sShortClassName = m_oIntrospector.getShortClassName(getTypeName()); in getCentralVariableStemName()
730 String sShortClassName = m_oIntrospector.getShortClassName(getTypeName()); in getVariableStemName()
760 …if ((sUnoObjectIdentity.equals(m_oUnoObject.toString()) && (!m_oIntrospector.isPrimitive(this.getT… in getVariableName()
761 (! m_oIntrospector.isObjectSequence(m_oUnoObject)))){ in getVariableName()
876 if (!m_oIntrospector.isObjectPrimitive(_oUnoObject)){ in getHeaderSourceCode()
[all …]
H A DInspector.java77 private Introspector m_oIntrospector = null; field in Inspector._Inspector
83 m_oIntrospector = Introspector.getIntrospector(m_xComponentContext); in _Inspector()
119 if (m_oIntrospector.isValidSDKInstallationPath(sRetPath)){ in getIDLPath()
120 sRetPath = m_oIntrospector.addToPath(sRetPath, sIDLDOCUMENTSUBFOLDER); in getIDLPath()
156 if (m_oIntrospector.isValidSDKInstallationPath(sInstallationFolder)){ in assignSDKPath()
H A DIntrospector.java81 private static Introspector m_oIntrospector = null; field in Introspector
87 if (m_oIntrospector == null){ in getIntrospector()
91 return m_oIntrospector; in getIntrospector()
96 if (m_oIntrospector == null){ in getIntrospector()
97 m_oIntrospector = new Introspector(_xComponentContext); in getIntrospector()
99 return m_oIntrospector; in getIntrospector()