当前位置: 首页>>代码示例>>Java>>正文


Java Tag.SUB属性代码示例

本文整理汇总了Java中javax.swing.text.html.HTML.Tag.SUB属性的典型用法代码示例。如果您正苦于以下问题:Java Tag.SUB属性的具体用法?Java Tag.SUB怎么用?Java Tag.SUB使用的例子?那么, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在javax.swing.text.html.HTML.Tag的用法示例。


在下文中一共展示了Tag.SUB属性的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: translateTag

/**
 * Translate the HTML character attribute to the Swing style constant.
 *
 * @param charAttr the character attributes of the html tag
 * @param t the html tag itself
 * @param a the attribute set where the translated attributes will be stored
 *
 * @return true if some attributes were translated, false otherwise.
 */
public static boolean translateTag(MutableAttributeSet charAttr,
                                   Tag t, MutableAttributeSet a)
{
  if(t == Tag.FONT)
    {
      Object color = a.getAttribute(Attribute.COLOR);
      if(color != null)
        {
          Color c = getColor(color.toString());
          if( c == null )
            return false;
          charAttr.addAttribute(StyleConstants.Foreground, c);
          return true;
        }

      if(a.getAttribute(Attribute.SIZE) != null)
        {
          // FIXME
          //      charAttr.addAttribute(StyleConstants.FontSize,
          //                            new java.lang.Integer(72));
          return true;
        }
    }

  if( t == Tag.B )
    {
      charAttr.addAttribute(StyleConstants.Bold, Boolean.TRUE);
      return true;
    }

  if( t == Tag.I )
    {
      charAttr.addAttribute(StyleConstants.Italic, Boolean.TRUE);
      return true;
    }

  if( t == Tag.U )
    {
      charAttr.addAttribute(StyleConstants.Underline, Boolean.TRUE);
      return true;
    }

  if( t == Tag.STRIKE )
    {
      charAttr.addAttribute(StyleConstants.StrikeThrough, Boolean.TRUE);
      return true;
    }

  if( t == Tag.SUP )
    {
      charAttr.addAttribute(StyleConstants.Superscript, Boolean.TRUE);
      return true;
    }

  if( t == Tag.SUB )
    {
      charAttr.addAttribute(StyleConstants.Subscript, Boolean.TRUE);
      return true;
    }
  return false;
}
 
开发者ID:vilie,项目名称:javify,代码行数:70,代码来源:CharacterAttributeTranslator.java

示例2: translateTag

/**
  * Translate the HTML character attribute to the Swing style constant.
  * 
  * @param charAttr the character attributes of the html tag
  * @param t the html tag itself
  * @param a the attribute set where the translated attributes will be stored
  * 
  * @return true if some attributes were translated, false otherwise.
  */
 public static boolean translateTag(MutableAttributeSet charAttr, 
			     Tag t, MutableAttributeSet a)
 {
   if(t == Tag.FONT)
     {
       Object color = a.getAttribute(Attribute.COLOR); 
if(color != null)
  {
    Color c = getColor(color.toString());
    if( c == null )
      return false;
    charAttr.addAttribute(StyleConstants.Foreground, c);
    return true;
  }

if(a.getAttribute(Attribute.SIZE) != null)
  {
    // FIXME
    //	    charAttr.addAttribute(StyleConstants.FontSize, 
    //				  new java.lang.Integer(72));
    return true;
  }
     }

   if( t == Tag.B )
     {
charAttr.addAttribute(StyleConstants.Bold, Boolean.TRUE);
return true;
     }

   if( t == Tag.I )
     {
charAttr.addAttribute(StyleConstants.Italic, Boolean.TRUE);
return true;
     }

   if( t == Tag.U )
     {
charAttr.addAttribute(StyleConstants.Underline, Boolean.TRUE);
return true;
     }

   if( t == Tag.STRIKE )
     {
charAttr.addAttribute(StyleConstants.StrikeThrough, Boolean.TRUE);
return true;
     }

   if( t == Tag.SUP )
     {
charAttr.addAttribute(StyleConstants.Superscript, Boolean.TRUE);
return true;
     }

   if( t == Tag.SUB )
     {
charAttr.addAttribute(StyleConstants.Subscript, Boolean.TRUE);
return true;
     }
   return false;
 }
 
开发者ID:nmldiegues,项目名称:jvm-stm,代码行数:70,代码来源:CharacterAttributeTranslator.java


注:本文中的javax.swing.text.html.HTML.Tag.SUB属性示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。