com.sas.dataselectors.export
Interface HTMLExportCSSInfoInterface

All Known Implementing Classes:
HTMLExportCSSInfo

public interface HTMLExportCSSInfoInterface

Represents a class that holds the information needed to declare a CSS style sheet into an HTML stream during the exporting An example of the CSS style sheet declaration is: link rel="stylesheet" href="/styles/sasComponents.css" media="screen" type="text/css"

Since:
3.1

Field Summary
static java.lang.String DEFAULT_MIME_TYPE
          Default MIME type used in the CSS declaration.
static java.lang.String DEFAULT_URL
          Default URL used in the CSS declaration.
 
Method Summary
 java.lang.String getCSSMediaList()
          Returns the list of the media types for which the style sheet should be applied.
 java.lang.String getCSSMIMEType()
          Returns the MIME type of the CSS style sheet.
 java.lang.String getCSSTitle()
          Returns the title of the CSS style sheet.
 java.lang.String getCSSURL()
          Returns the URL of the CSS style sheet.
 void setCSSMediaList(java.lang.String mediaList)
          Sets the list of the media types for which the style sheet should be applied.
 void setCSSMIMEType(java.lang.String type)
          Sets the MIME type of the CSS style sheet.
 void setCSSTitle(java.lang.String title)
          Sets the title of the CSS style sheet.
 void setCSSURL(java.lang.String url)
          Sets the URL of the CSS style sheet.
 

Field Detail

DEFAULT_MIME_TYPE

static final java.lang.String DEFAULT_MIME_TYPE
Default MIME type used in the CSS declaration. "text/css"

See Also:
Constant Field Values

DEFAULT_URL

static final java.lang.String DEFAULT_URL
Default URL used in the CSS declaration. "/styles/sasComponents_IE_6.css"

See Also:
Constant Field Values
Method Detail

setCSSURL

void setCSSURL(java.lang.String url)
Sets the URL of the CSS style sheet.

Parameters:
url - The URL of the style sheet.

getCSSURL

java.lang.String getCSSURL()
Returns the URL of the CSS style sheet.

Returns:
String The URL of the style sheet Default value DEFAULT_URL.

setCSSMIMEType

void setCSSMIMEType(java.lang.String type)
Sets the MIME type of the CSS style sheet.

Parameters:
type - The MIME type of the CSS style sheet.

getCSSMIMEType

java.lang.String getCSSMIMEType()
Returns the MIME type of the CSS style sheet.

Returns:
String The MIME type of the CSS style sheet. Default value DEFAULT_MIME_TYPE.

setCSSTitle

void setCSSTitle(java.lang.String title)
Sets the title of the CSS style sheet.

Parameters:
title - The title of the CSS style sheet.

getCSSTitle

java.lang.String getCSSTitle()
Returns the title of the CSS style sheet.

Returns:
String The title of the CSS style sheet. Default value HTMLExportCommandsAttributeNames.MISSING_VALUE.

setCSSMediaList

void setCSSMediaList(java.lang.String mediaList)
Sets the list of the media types for which the style sheet should be applied.

Parameters:
mediaList - The list of the media types for which the style sheet should be applied.

getCSSMediaList

java.lang.String getCSSMediaList()
Returns the list of the media types for which the style sheet should be applied.

Returns:
String The list of the media types for which the style sheet should be applied. Default value HTMLExportCommandsAttributeNames.MISSING_VALUE.



Copyright © 2009 SAS Institute Inc. All Rights Reserved.