Lines Matching refs:prop

113                     PropertyValue prop = (PropertyValue)o[j];  in _getSettings()  local
114 log.println("Property" + j + ": " + prop.Name + " " + prop.Value.toString()); in _getSettings()
140 PropertyValue[] prop = createMenuBarEntry("My Entry", mxMenuBarSettings, mxMSF, log); in _replaceSettings() local
141 if (prop == null) { in _replaceSettings()
147 XIndexContainer.class, prop[3].Value), log); in _replaceSettings()
151 x.insertByIndex(x.getCount(), prop); in _replaceSettings() local
211 PropertyValue[] prop = createMenuBarEntry("A new entry", mxSettings, mxMSF, log); in _insertSettings() local
212 if (prop == null) { in _insertSettings()
218 XIndexContainer.class, prop[3].Value), log); in _insertSettings()
223 x.insertByIndex(count, prop); in _insertSettings()
298 PropertyValue[] prop = new PropertyValue[4]; in createMenuBarEntry() local
299 prop[0] = new PropertyValue(); in createMenuBarEntry()
300 prop[0].Name = "CommandURL"; in createMenuBarEntry()
301 prop[0].Value = "vnd.openoffice.org:MyMenu"; in createMenuBarEntry()
302 prop[1] = new PropertyValue(); in createMenuBarEntry()
303 prop[1].Name = "Label"; in createMenuBarEntry()
304 prop[1].Value = sLabelName; in createMenuBarEntry()
305 prop[2] = new PropertyValue(); in createMenuBarEntry()
306 prop[2].Name = "Type"; in createMenuBarEntry()
307 prop[2].Value = new Short((short)0); in createMenuBarEntry()
308 prop[3] = new PropertyValue(); in createMenuBarEntry()
309 prop[3].Name = "ItemDescriptorContainer"; in createMenuBarEntry()
317 prop[3].Value = xFactory.createInstanceWithContext(xContext); in createMenuBarEntry()
324 return prop; in createMenuBarEntry()