Lines Matching refs:property

69 			String property = System.getProperty("AccessBridgeLogging");  in AccessibleTextImpl()  local
70 if ((property != null) && (property.indexOf("text") != -1)) { in AccessibleTextImpl()
254 com.sun.star.beans.PropertyValue property) { in setAttribute() argument
257 if (property.Name.equals("ParaAdjust")) { in setAttribute()
260 if (property.Value instanceof ParagraphAdjust) { in setAttribute()
261 adjust = (ParagraphAdjust) property.Value; in setAttribute()
262 } else if (property.Value instanceof Any) { in setAttribute()
264 ParagraphAdjust.class), property.Value); in setAttribute()
267 property.Value)); in setAttribute()
288 property.Value.getClass().getName()); in setAttribute()
292 } else if (property.Name.equals("CharBackColor")) { in setAttribute()
294 new java.awt.Color(AnyConverter.toInt(property.Value))); in setAttribute()
298 } else if (property.Name.equals("CharWeight")) { in setAttribute()
299 boolean isBold = AnyConverter.toFloat(property.Value) > 125; in setAttribute()
304 } else if (property.Name.equals("ParaFirstLineIndent")) { in setAttribute()
306 (float) (toPointFactor * AnyConverter.toInt(property.Value))); in setAttribute()
309 } else if (property.Name.equals("CharFontPitch")) { in setAttribute()
310 if (AnyConverter.toShort(property.Value) == 2) { in setAttribute()
315 } else if (property.Name.equals("CharHeight")) { in setAttribute()
317 (int) AnyConverter.toFloat(property.Value)); in setAttribute()
320 } else if (property.Name.equals("CharColor")) { in setAttribute()
322 new java.awt.Color(AnyConverter.toInt(property.Value))); in setAttribute()
326 } else if (property.Name.equals("CharPosture")) { in setAttribute()
329 if (property.Value instanceof FontSlant) { in setAttribute()
330 fs = (FontSlant) property.Value; in setAttribute()
331 } else if (property.Value instanceof Any) { in setAttribute()
333 FontSlant.class), property.Value); in setAttribute()
341 } else if (property.Name.equals("ParaLeftMargin")) { in setAttribute()
343 (float) (toPointFactor * AnyConverter.toInt(property.Value))); in setAttribute()
346 } else if (property.Name.equals("ParaRightMargin")) { in setAttribute()
348 (float) (toPointFactor * AnyConverter.toInt(property.Value))); in setAttribute()
351 else if (property.Name.equals("ParaLineSpacing")) { in setAttribute()
354 if (property.Value instanceof LineSpacing) { in setAttribute()
355 ls = (LineSpacing) property.Value; in setAttribute()
356 } else if (property.Value instanceof Any) { in setAttribute()
358 LineSpacing.class), property.Value); in setAttribute()
368 else if (property.Name.equals("ParaTopMargin")) { in setAttribute()
370 (float) (toPointFactor * AnyConverter.toInt(property.Value))); in setAttribute()
373 else if (property.Name.equals("ParaBottomMargin")) { in setAttribute()
375 (float) (toPointFactor * AnyConverter.toInt(property.Value))); in setAttribute()
378 } else if (property.Name.equals("CharStrikeout")) { in setAttribute()
379 boolean isStrikeThrough = (FontStrikeout.NONE != AnyConverter.toShort(property.Value)); in setAttribute()
383 } else if (property.Name.equals("CharEscapement")) { in setAttribute()
384 short value = AnyConverter.toShort(property.Value); in setAttribute()
393 } else if (property.Name.equals("ParaTabStops")) { in setAttribute()
394 TabStop[] unoTabStops = (TabStop[]) AnyConverter.toArray(property.Value); in setAttribute()
434 } else if (property.Name.equals("CharUnderline")) { in setAttribute()
435 boolean isUnderline = (FontUnderline.NONE != AnyConverter.toShort(property.Value)); in setAttribute()
441 " caught for property " + property.Name + ": " + in setAttribute()
444 property.Value.getClass().getName()); in setAttribute()