javax.swing.text.Element.getAttributes()方法的使用及代码示例

x33g5p2x  于2022-01-19 转载在 其他  
字(6.4k)|赞(0)|评价(0)|浏览(288)

本文整理了Java中javax.swing.text.Element.getAttributes()方法的一些代码示例,展示了Element.getAttributes()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Element.getAttributes()方法的具体详情如下:
包路径:javax.swing.text.Element
类名称:Element
方法名:getAttributes

Element.getAttributes介绍

暂无

代码示例

代码示例来源:origin: groovy/groovy-core

  1. public void focusGained(FocusEvent fe) {
  2. textComponent = (JTextComponent) fe.getSource();
  3. attributeSet =
  4. textComponent.getDocument().getDefaultRootElement().getAttributes();
  5. }
  6. };

代码示例来源:origin: skylot/jadx

  1. for (int i = 0; i < line.getElementCount(); i++) {
  2. Element child = line.getElement(i);
  3. AttributeSet as = child.getAttributes();
  4. String fontFamily = (String) as.getAttribute(StyleConstants.FontFamily);
  5. Integer fontSize = (Integer) as.getAttribute(StyleConstants.FontSize);

代码示例来源:origin: groovy/groovy-core

  1. public void actionPerformed(ActionEvent ae) {
  2. JTextComponent tComp = (JTextComponent) ae.getSource();
  3. if (tComp.getDocument() instanceof StyledDocument) {
  4. doc = (StyledDocument) tComp.getDocument();
  5. try {
  6. doc.getText(0, doc.getLength(), segment);
  7. }
  8. catch (Exception e) {
  9. // should NEVER reach here
  10. e.printStackTrace();
  11. }
  12. int offset = tComp.getCaretPosition();
  13. int index = findTabLocation(offset);
  14. buffer.delete(0, buffer.length());
  15. buffer.append('\n');
  16. if (index > -1) {
  17. for (int i = 0; i < index + 4; i++) {
  18. buffer.append(' ');
  19. }
  20. }
  21. try {
  22. doc.insertString(offset, buffer.toString(),
  23. doc.getDefaultRootElement().getAttributes());
  24. }
  25. catch (BadLocationException ble) {
  26. ble.printStackTrace();
  27. }
  28. }
  29. }

代码示例来源:origin: SonarSource/sonarqube

  1. AttributeSet as = child.getAttributes();
  2. String fontFamily = (String) as.getAttribute(StyleConstants.FontFamily);
  3. Integer fontSize = (Integer) as.getAttribute(StyleConstants.FontSize);

代码示例来源:origin: groovy/groovy-core

  1. public int findTabLocation(int offset) {
  2. // find first {
  3. boolean cont = true;
  4. while (offset > -1 && cont) {
  5. Element el = doc.getCharacterElement(offset);
  6. Object color =
  7. el.getAttributes().getAttribute(StyleConstants.Foreground);
  8. if (!COMMENT_COLOR.equals(color)) {
  9. cont = segment.array[offset] != '{' &&
  10. segment.array[offset] != '}';
  11. }
  12. offset -= cont ? 1 : 0;
  13. }
  14. if (offset > -1 && segment.array[offset] == '{') {
  15. while (offset > -1 &&
  16. !Character.isWhitespace(segment.array[offset--])) {
  17. }
  18. }
  19. int index = offset < 0 || segment.array[offset] == '}' ? -4 : 0;
  20. if (offset > -1) {
  21. Element top = doc.getDefaultRootElement();
  22. offset = top.getElement(top.getElementIndex(offset)).getStartOffset();
  23. while (Character.isWhitespace(segment.array[offset++])) {
  24. index++;
  25. }
  26. }
  27. return index;
  28. }
  29. }

代码示例来源:origin: chatty/chatty

  1. private long getTimeAgo(Element element) {
  2. Long timestamp = (Long)element.getAttributes().getAttribute(Attribute.TIMESTAMP);
  3. if (timestamp != null) {
  4. return System.currentTimeMillis() - timestamp;
  5. }
  6. return Long.MAX_VALUE;
  7. }

代码示例来源:origin: chatty/chatty

  1. /**
  2. * Gets the id attached to the message.
  3. *
  4. * @param element
  5. * @return The ID element, or null if none was found
  6. */
  7. public static String getIdFromElement(Element element) {
  8. if (element != null) {
  9. return (String)element.getAttributes().getAttribute(Attribute.ID);
  10. }
  11. return null;
  12. }

代码示例来源:origin: chatty/chatty

  1. /**
  2. * Checks if the given line contains an attribute indicating that the line
  3. * is already deleted.
  4. *
  5. * @param line The element representing this line
  6. * @return
  7. */
  8. private boolean isLineDeleted(Element line) {
  9. return line.getAttributes().containsAttribute(Attribute.DELETED_LINE, true);
  10. }

代码示例来源:origin: freeplane/freeplane

  1. private boolean isEndtag(final Element elem) {
  2. final AttributeSet attributes = elem.getAttributes();
  3. final Object endTag = attributes.getAttribute(HTML.Attribute.ENDTAG);
  4. final boolean isEndtag = (endTag instanceof String) && ((String) endTag).equals("true");
  5. return isEndtag;
  6. }

代码示例来源:origin: chatty/chatty

  1. private boolean isUrlDeleted(Element e) {
  2. Boolean deleted = (Boolean) e.getAttributes().getAttribute(ChannelTextPane.Attribute.URL_DELETED);
  3. if (deleted == null) {
  4. return false;
  5. }
  6. return deleted;
  7. }

代码示例来源:origin: org.codehaus.groovy/groovy-console

  1. public void focusGained(FocusEvent fe) {
  2. textComponent = (JTextComponent) fe.getSource();
  3. attributeSet =
  4. textComponent.getDocument().getDefaultRootElement().getAttributes();
  5. }
  6. };

代码示例来源:origin: com.thinkaurelius.groovy-shaded-asm/groovy-shaded-asm

  1. public void focusGained(FocusEvent fe) {
  2. textComponent = (JTextComponent) fe.getSource();
  3. attributeSet =
  4. textComponent.getDocument().getDefaultRootElement().getAttributes();
  5. }
  6. };

代码示例来源:origin: org.codehaus.groovy/groovy-all-minimal

  1. public void focusGained(FocusEvent fe) {
  2. textComponent = (JTextComponent)fe.getSource();
  3. attributeSet =
  4. textComponent.getDocument().getDefaultRootElement().getAttributes();
  5. }
  6. };

代码示例来源:origin: org.fudaa.framework.ctulu/ctulu-ui

  1. /** Method tests whether the image within a link
  2. */
  3. boolean isLink()
  4. {
  5. AttributeSet anchorAttr = (AttributeSet)fElement.getAttributes().getAttribute(HTML.Tag.A);
  6. if(anchorAttr != null)
  7. {
  8. return anchorAttr.isDefined(HTML.Attribute.HREF);
  9. }
  10. return false;
  11. }

代码示例来源:origin: com.eas.platypus/platypus-js-forms

  1. @Override
  2. protected void startTag(Element elem) throws IOException, BadLocationException {
  3. if (bodyStarted) {
  4. super.startTag(elem);
  5. }
  6. if (HTML.Tag.BODY == elem.getAttributes().getAttribute(StyleConstants.NameAttribute)) {
  7. bodyStarted = true;
  8. }
  9. }

代码示例来源:origin: otros-systems/otroslogviewer

  1. private AttributeSet getStyleUnderCursor(MouseEvent e) {
  2. int i = textPane.viewToModel(e.getPoint());
  3. return textPane.getStyledDocument().getCharacterElement(i).getAttributes();
  4. }
  5. }

代码示例来源:origin: chatty/chatty

  1. public static void getImageIds(Element element, Set<Long> ids) {
  2. Long id = (Long)element.getAttributes().getAttribute(ChannelTextPane.Attribute.IMAGE_ID);
  3. if (id != null) {
  4. ids.add(id);
  5. }
  6. for (int i=0; i<element.getElementCount(); i++) {
  7. getImageIds(element.getElement(i), ids);
  8. }
  9. }

代码示例来源:origin: protegeproject/protege

  1. private static Style getStyleAtPoint(JTextPane text, Point point) {
  2. int pos = text.viewToModel(point);
  3. StyledDocument doc = text.getStyledDocument();
  4. Element element = doc.getCharacterElement(pos);
  5. AttributeSet addtributes = element.getAttributes();
  6. return doc.getStyle((String) addtributes
  7. .getAttribute(StyleConstants.NameAttribute));
  8. }

代码示例来源:origin: protegeproject/protege

  1. @Override
  2. public void mouseMoved(MouseEvent e) {
  3. int pos = previewText.viewToModel(e.getPoint());
  4. StyledDocument doc = previewText.getStyledDocument();
  5. Element element = doc.getCharacterElement(pos);
  6. AttributeSet addtributes = element.getAttributes();
  7. Style style = doc.getStyle((String) addtributes
  8. .getAttribute(StyleConstants.NameAttribute));
  9. previewText.setToolTipText(
  10. "Click to change the " + style.getName() + " color");
  11. }
  12. });

代码示例来源:origin: chatty/chatty

  1. private void clearImages(Element element) {
  2. Long imageId = (Long)element.getAttributes().getAttribute(Attribute.IMAGE_ID);
  3. if (imageId != null) {
  4. kit.clearImage(imageId);
  5. }
  6. if (!element.isLeaf()) {
  7. for (int i=0; i<element.getElementCount(); i++) {
  8. clearImages(element.getElement(i));
  9. }
  10. }
  11. }

相关文章