use objc2::__framework_prelude::*;
use objc2_foundation::*;
use crate::*;
extern_class!(
#[derive(Debug, PartialEq, Eq, Hash)]
#[cfg(all(
feature = "DOMElement",
feature = "DOMHTMLElement",
feature = "DOMNode",
feature = "DOMObject",
feature = "WebScriptObject"
))]
#[deprecated]
pub struct DOMHTMLAppletElement;
#[cfg(all(
feature = "DOMElement",
feature = "DOMHTMLElement",
feature = "DOMNode",
feature = "DOMObject",
feature = "WebScriptObject"
))]
unsafe impl ClassType for DOMHTMLAppletElement {
#[inherits(DOMElement, DOMNode, DOMObject, WebScriptObject, NSObject)]
type Super = DOMHTMLElement;
type Mutability = InteriorMutable;
}
);
#[cfg(all(
feature = "DOMElement",
feature = "DOMEventTarget",
feature = "DOMHTMLElement",
feature = "DOMNode",
feature = "DOMObject",
feature = "WebScriptObject"
))]
unsafe impl DOMEventTarget for DOMHTMLAppletElement {}
#[cfg(all(
feature = "DOMElement",
feature = "DOMHTMLElement",
feature = "DOMNode",
feature = "DOMObject",
feature = "WebScriptObject"
))]
unsafe impl NSCopying for DOMHTMLAppletElement {}
#[cfg(all(
feature = "DOMElement",
feature = "DOMHTMLElement",
feature = "DOMNode",
feature = "DOMObject",
feature = "WebScriptObject"
))]
unsafe impl NSObjectProtocol for DOMHTMLAppletElement {}
extern_methods!(
#[cfg(all(
feature = "DOMElement",
feature = "DOMHTMLElement",
feature = "DOMNode",
feature = "DOMObject",
feature = "WebScriptObject"
))]
unsafe impl DOMHTMLAppletElement {
#[deprecated]
#[method_id(@__retain_semantics Other align)]
pub unsafe fn align(&self) -> Retained<NSString>;
#[deprecated]
#[method(setAlign:)]
pub unsafe fn setAlign(&self, align: Option<&NSString>);
#[deprecated]
#[method_id(@__retain_semantics Other alt)]
pub unsafe fn alt(&self) -> Retained<NSString>;
#[deprecated]
#[method(setAlt:)]
pub unsafe fn setAlt(&self, alt: Option<&NSString>);
#[deprecated]
#[method_id(@__retain_semantics Other archive)]
pub unsafe fn archive(&self) -> Retained<NSString>;
#[deprecated]
#[method(setArchive:)]
pub unsafe fn setArchive(&self, archive: Option<&NSString>);
#[deprecated]
#[method_id(@__retain_semantics Other code)]
pub unsafe fn code(&self) -> Retained<NSString>;
#[deprecated]
#[method(setCode:)]
pub unsafe fn setCode(&self, code: Option<&NSString>);
#[deprecated]
#[method_id(@__retain_semantics Other codeBase)]
pub unsafe fn codeBase(&self) -> Retained<NSString>;
#[deprecated]
#[method(setCodeBase:)]
pub unsafe fn setCodeBase(&self, code_base: Option<&NSString>);
#[deprecated]
#[method_id(@__retain_semantics Other height)]
pub unsafe fn height(&self) -> Retained<NSString>;
#[deprecated]
#[method(setHeight:)]
pub unsafe fn setHeight(&self, height: Option<&NSString>);
#[deprecated]
#[method(hspace)]
pub unsafe fn hspace(&self) -> c_int;
#[deprecated]
#[method(setHspace:)]
pub unsafe fn setHspace(&self, hspace: c_int);
#[deprecated]
#[method_id(@__retain_semantics Other name)]
pub unsafe fn name(&self) -> Retained<NSString>;
#[deprecated]
#[method(setName:)]
pub unsafe fn setName(&self, name: Option<&NSString>);
#[deprecated]
#[method_id(@__retain_semantics Other object)]
pub unsafe fn object(&self) -> Retained<NSString>;
#[deprecated]
#[method(setObject:)]
pub unsafe fn setObject(&self, object: Option<&NSString>);
#[deprecated]
#[method(vspace)]
pub unsafe fn vspace(&self) -> c_int;
#[deprecated]
#[method(setVspace:)]
pub unsafe fn setVspace(&self, vspace: c_int);
#[deprecated]
#[method_id(@__retain_semantics Other width)]
pub unsafe fn width(&self) -> Retained<NSString>;
#[deprecated]
#[method(setWidth:)]
pub unsafe fn setWidth(&self, width: Option<&NSString>);
}
);
extern_methods!(
#[cfg(all(
feature = "DOMElement",
feature = "DOMHTMLElement",
feature = "DOMNode",
feature = "DOMObject",
feature = "WebScriptObject"
))]
unsafe impl DOMHTMLAppletElement {
#[deprecated]
#[method_id(@__retain_semantics Init init)]
pub unsafe fn init(this: Allocated<Self>) -> Retained<Self>;
}
);
extern_methods!(
#[cfg(all(
feature = "DOMElement",
feature = "DOMHTMLElement",
feature = "DOMNode",
feature = "DOMObject",
feature = "WebScriptObject"
))]
unsafe impl DOMHTMLAppletElement {
#[method_id(@__retain_semantics New new)]
pub unsafe fn new() -> Retained<Self>;
}
);