org.xmlet.htmlapi.MetadataContentChoice Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of htmlApi Show documentation
Show all versions of htmlApi Show documentation
Uses XsdAsm to generate a fluent API that allows the creation of HTML5 documents.
The newest version!
package org.xmlet.htmlapi;
public interface MetadataContentChoice, Z extends Element> extends TextGroup {
default Base base() {
return (Base)this.addChild(new Base(this.self()));
}
default Command command() {
return (Command)this.addChild(new Command(this.self()));
}
default Link link() {
return (Link)this.addChild(new Link(this.self()));
}
default Meta meta() {
return (Meta)this.addChild(new Meta(this.self()));
}
default Noscript noscript() {
return (Noscript)this.addChild(new Noscript(this.self()));
}
default Script script() {
return (Script)this.addChild(new Script(this.self()));
}
default Style style() {
return (Style)this.addChild(new Style(this.self()));
}
default Title title() {
return (Title)this.addChild(new Title(this.self()));
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy