jp.morpho.webapp.servlet.jsp.tagext.html
インタフェース CoreAttrs

既知のサブインタフェースの一覧:
Attrs
既知の実装クラスの一覧:
ControlTagSupport

public interface CoreAttrs

Generic Attributes の coreattrs を表します。

coreattrs の HTML 4 定義は次のとおりです。

 <!ENTITY % coreattrs
  "id          ID             #IMPLIED  -- document-wide unique id --
   class       CDATA          #IMPLIED  -- space-separated list of classes --
   style       %StyleSheet;   #IMPLIED  -- associated style info --
   title       %Text;         #IMPLIED  -- advisory title --"
   >
 

作成者:
Kumiko Hiroi

メソッドの概要
 java.lang.String getStyle()
          Returns the style.
 java.lang.String getStyleClass()
          Returns the cls.
 java.lang.String getStyleId()
          Returns the id.
 java.lang.String getTitle()
          Returns the title.
 void setStyle(java.lang.String style)
          Sets the style.
 void setStyleClass(java.lang.String cls)
          Sets the cls.
 void setStyleId(java.lang.String id)
          Sets the id.
 void setTitle(java.lang.String title)
          Sets the title.
 

メソッドの詳細

getStyleClass

public java.lang.String getStyleClass()
Returns the cls.

戻り値:
String

getStyleId

public java.lang.String getStyleId()
Returns the id.

戻り値:
String

getStyle

public java.lang.String getStyle()
Returns the style.

戻り値:
String

getTitle

public java.lang.String getTitle()
Returns the title.

戻り値:
String

setStyleClass

public void setStyleClass(java.lang.String cls)
Sets the cls.

パラメータ:
cls - The cls to set

setStyleId

public void setStyleId(java.lang.String id)
Sets the id.

パラメータ:
id - The id to set

setStyle

public void setStyle(java.lang.String style)
Sets the style.

パラメータ:
style - The style to set

setTitle

public void setTitle(java.lang.String title)
Sets the title.

パラメータ:
title - The title to set