#if (defined(ghcjs_HOST_OS) && defined(USE_JAVASCRIPTFFI)) || !defined(USE_WEBKIT)
module GHCJS.DOM.HTMLParagraphElement
(ghcjs_dom_html_paragraph_element_set_align,
htmlParagraphElementSetAlign,
ghcjs_dom_html_paragraph_element_get_align,
htmlParagraphElementGetAlign, HTMLParagraphElement,
IsHTMLParagraphElement, castToHTMLParagraphElement,
gTypeHTMLParagraphElement, toHTMLParagraphElement)
where
import GHCJS.Types
import GHCJS.Foreign
import GHCJS.Marshal
import Data.Int
import Data.Word
import GHCJS.DOM.Types
import Control.Applicative ((<$>))
import GHCJS.DOM.EventM
foreign import javascript unsafe "$1[\"align\"] = $2;"
ghcjs_dom_html_paragraph_element_set_align ::
JSRef HTMLParagraphElement -> JSString -> IO ()
htmlParagraphElementSetAlign ::
(IsHTMLParagraphElement self, ToJSString val) =>
self -> val -> IO ()
htmlParagraphElementSetAlign self val
= ghcjs_dom_html_paragraph_element_set_align
(unHTMLParagraphElement (toHTMLParagraphElement self))
(toJSString val)
foreign import javascript unsafe "$1[\"align\"]"
ghcjs_dom_html_paragraph_element_get_align ::
JSRef HTMLParagraphElement -> IO JSString
htmlParagraphElementGetAlign ::
(IsHTMLParagraphElement self, FromJSString result) =>
self -> IO result
htmlParagraphElementGetAlign self
= fromJSString <$>
(ghcjs_dom_html_paragraph_element_get_align
(unHTMLParagraphElement (toHTMLParagraphElement self)))
#else
module GHCJS.DOM.HTMLParagraphElement (
module Graphics.UI.Gtk.WebKit.DOM.HTMLParagraphElement
) where
import Graphics.UI.Gtk.WebKit.DOM.HTMLParagraphElement
#endif