use core::ffi::*;
use core::ptr::NonNull;
use objc2::__framework_prelude::*;
use objc2_foundation::*;
use crate::*;
extern_class!(
#[unsafe(super(
DOMHTMLElement,
DOMElement,
DOMNode,
DOMObject,
WebScriptObject,
NSObject
))]
#[derive(Debug, PartialEq, Eq, Hash)]
#[cfg(all(
feature = "DOMElement",
feature = "DOMHTMLElement",
feature = "DOMNode",
feature = "DOMObject",
feature = "WebScriptObject"
))]
#[deprecated]
pub struct DOMHTMLTableCellElement;
);
#[cfg(all(
feature = "DOMElement",
feature = "DOMEventTarget",
feature = "DOMHTMLElement",
feature = "DOMNode",
feature = "DOMObject",
feature = "WebScriptObject"
))]
extern_conformance!(
unsafe impl DOMEventTarget for DOMHTMLTableCellElement {}
);
#[cfg(all(
feature = "DOMElement",
feature = "DOMHTMLElement",
feature = "DOMNode",
feature = "DOMObject",
feature = "WebScriptObject"
))]
extern_conformance!(
unsafe impl NSCopying for DOMHTMLTableCellElement {}
);
#[cfg(all(
feature = "DOMElement",
feature = "DOMHTMLElement",
feature = "DOMNode",
feature = "DOMObject",
feature = "WebScriptObject"
))]
unsafe impl CopyingHelper for DOMHTMLTableCellElement {
type Result = Self;
}
#[cfg(all(
feature = "DOMElement",
feature = "DOMHTMLElement",
feature = "DOMNode",
feature = "DOMObject",
feature = "WebScriptObject"
))]
extern_conformance!(
unsafe impl NSObjectProtocol for DOMHTMLTableCellElement {}
);
#[cfg(all(
feature = "DOMElement",
feature = "DOMHTMLElement",
feature = "DOMNode",
feature = "DOMObject",
feature = "WebScriptObject"
))]
impl DOMHTMLTableCellElement {
extern_methods!(
#[deprecated]
#[unsafe(method(cellIndex))]
#[unsafe(method_family = none)]
pub unsafe fn cellIndex(&self) -> c_int;
#[deprecated]
#[unsafe(method(align))]
#[unsafe(method_family = none)]
pub unsafe fn align(&self) -> Retained<NSString>;
#[deprecated]
#[unsafe(method(setAlign:))]
#[unsafe(method_family = none)]
pub unsafe fn setAlign(&self, align: Option<&NSString>);
#[deprecated]
#[unsafe(method(axis))]
#[unsafe(method_family = none)]
pub unsafe fn axis(&self) -> Retained<NSString>;
#[deprecated]
#[unsafe(method(setAxis:))]
#[unsafe(method_family = none)]
pub unsafe fn setAxis(&self, axis: Option<&NSString>);
#[deprecated]
#[unsafe(method(bgColor))]
#[unsafe(method_family = none)]
pub unsafe fn bgColor(&self) -> Retained<NSString>;
#[deprecated]
#[unsafe(method(setBgColor:))]
#[unsafe(method_family = none)]
pub unsafe fn setBgColor(&self, bg_color: Option<&NSString>);
#[deprecated]
#[unsafe(method(ch))]
#[unsafe(method_family = none)]
pub unsafe fn ch(&self) -> Retained<NSString>;
#[deprecated]
#[unsafe(method(setCh:))]
#[unsafe(method_family = none)]
pub unsafe fn setCh(&self, ch: Option<&NSString>);
#[deprecated]
#[unsafe(method(chOff))]
#[unsafe(method_family = none)]
pub unsafe fn chOff(&self) -> Retained<NSString>;
#[deprecated]
#[unsafe(method(setChOff:))]
#[unsafe(method_family = none)]
pub unsafe fn setChOff(&self, ch_off: Option<&NSString>);
#[deprecated]
#[unsafe(method(colSpan))]
#[unsafe(method_family = none)]
pub unsafe fn colSpan(&self) -> c_int;
#[deprecated]
#[unsafe(method(setColSpan:))]
#[unsafe(method_family = none)]
pub unsafe fn setColSpan(&self, col_span: c_int);
#[deprecated]
#[unsafe(method(rowSpan))]
#[unsafe(method_family = none)]
pub unsafe fn rowSpan(&self) -> c_int;
#[deprecated]
#[unsafe(method(setRowSpan:))]
#[unsafe(method_family = none)]
pub unsafe fn setRowSpan(&self, row_span: c_int);
#[deprecated]
#[unsafe(method(headers))]
#[unsafe(method_family = none)]
pub unsafe fn headers(&self) -> Retained<NSString>;
#[deprecated]
#[unsafe(method(setHeaders:))]
#[unsafe(method_family = none)]
pub unsafe fn setHeaders(&self, headers: Option<&NSString>);
#[deprecated]
#[unsafe(method(height))]
#[unsafe(method_family = none)]
pub unsafe fn height(&self) -> Retained<NSString>;
#[deprecated]
#[unsafe(method(setHeight:))]
#[unsafe(method_family = none)]
pub unsafe fn setHeight(&self, height: Option<&NSString>);
#[deprecated]
#[unsafe(method(noWrap))]
#[unsafe(method_family = none)]
pub unsafe fn noWrap(&self) -> bool;
#[deprecated]
#[unsafe(method(setNoWrap:))]
#[unsafe(method_family = none)]
pub unsafe fn setNoWrap(&self, no_wrap: bool);
#[deprecated]
#[unsafe(method(vAlign))]
#[unsafe(method_family = none)]
pub unsafe fn vAlign(&self) -> Retained<NSString>;
#[deprecated]
#[unsafe(method(setVAlign:))]
#[unsafe(method_family = none)]
pub unsafe fn setVAlign(&self, v_align: Option<&NSString>);
#[deprecated]
#[unsafe(method(width))]
#[unsafe(method_family = none)]
pub unsafe fn width(&self) -> Retained<NSString>;
#[deprecated]
#[unsafe(method(setWidth:))]
#[unsafe(method_family = none)]
pub unsafe fn setWidth(&self, width: Option<&NSString>);
#[deprecated]
#[unsafe(method(abbr))]
#[unsafe(method_family = none)]
pub unsafe fn abbr(&self) -> Retained<NSString>;
#[deprecated]
#[unsafe(method(setAbbr:))]
#[unsafe(method_family = none)]
pub unsafe fn setAbbr(&self, abbr: Option<&NSString>);
#[deprecated]
#[unsafe(method(scope))]
#[unsafe(method_family = none)]
pub unsafe fn scope(&self) -> Retained<NSString>;
#[deprecated]
#[unsafe(method(setScope:))]
#[unsafe(method_family = none)]
pub unsafe fn setScope(&self, scope: Option<&NSString>);
);
}
#[cfg(all(
feature = "DOMElement",
feature = "DOMHTMLElement",
feature = "DOMNode",
feature = "DOMObject",
feature = "WebScriptObject"
))]
impl DOMHTMLTableCellElement {
extern_methods!(
#[deprecated]
#[unsafe(method(init))]
#[unsafe(method_family = init)]
pub unsafe fn init(this: Allocated<Self>) -> Retained<Self>;
);
}
#[cfg(all(
feature = "DOMElement",
feature = "DOMHTMLElement",
feature = "DOMNode",
feature = "DOMObject",
feature = "WebScriptObject"
))]
impl DOMHTMLTableCellElement {
extern_methods!(
#[unsafe(method(new))]
#[unsafe(method_family = new)]
pub unsafe fn new() -> Retained<Self>;
);
}