blob: 6f9bdda6129eb98a9a47d9500d781638e0cfc94f [file] [log] [blame]
// ***************************************************************************************************************************
// * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file *
// * distributed with this work for additional information regarding copyright ownership. The ASF licenses this file *
// * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance *
// * with the License. You may obtain a copy of the License at *
// * *
// * http://www.apache.org/licenses/LICENSE-2.0 *
// * *
// * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an *
// * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the *
// * specific language governing permissions and limitations under the License. *
// ***************************************************************************************************************************
package org.apache.juneau.dto.html5;
import java.net.*;
import java.net.URI;
import org.apache.juneau.*;
import org.apache.juneau.annotation.*;
/**
* DTO for an HTML {@doc HTML5.scripting-1#the-script-element <script>}
* element.
*
* <ul class='seealso'>
* <li class='link'>{@doc juneau-dto.HTML5}
* </ul>
*/
@Bean(typeName="script")
public class Script extends HtmlElementRawText {
/**
* {@doc HTML5.scripting-1#attr-script-async async} attribute.
*
* <p>
* Execute script asynchronously.
*
* @param async
* The new value for this attribute.
* Typically a {@link Boolean} or {@link String}.
* @return This object (for method chaining).
*/
public final Script async(Object async) {
attr("async", deminimize(async, "async"));
return this;
}
/**
* {@doc HTML5.scripting-1#attr-script-charset charset} attribute.
*
* <p>
* Character encoding of the external script resource.
*
* @param charset The new value for this attribute.
* @return This object (for method chaining).
*/
public final Script charset(String charset) {
attr("charset", charset);
return this;
}
/**
* {@doc HTML5.scripting-1#attr-script-crossorigin crossorigin}
* attribute.
*
* <p>
* How the element handles cross-origin requests.
*
* @param crossorigin The new value for this attribute.
* @return This object (for method chaining).
*/
public final Script crossorigin(String crossorigin) {
attr("crossorigin", crossorigin);
return this;
}
/**
* {@doc HTML5.scripting-1#attr-script-defer defer} attribute.
*
* <p>
* Defer script execution.
*
* @param defer
* The new value for this attribute.
* Typically a {@link Boolean} or {@link String}.
* @return This object (for method chaining).
*/
public final Script defer(Object defer) {
attr("defer", deminimize(defer, "defer"));
return this;
}
/**
* {@doc HTML5.scripting-1#attr-script-src src} attribute.
*
* <p>
* Address of the resource.
*
* <p>
* The value can be of any of the following types: {@link URI}, {@link URL}, {@link String}.
* Strings must be valid URIs.
*
* <p>
* URIs defined by {@link UriResolver} can be used for values.
*
* @param src
* The new value for this attribute.
* Typically a {@link URL} or {@link String}.
* @return This object (for method chaining).
*/
public final Script src(Object src) {
attrUri("src", src);
return this;
}
/**
* {@doc HTML5.scripting-1#attr-script-type type} attribute.
*
* <p>
* Type of embedded resource.
*
* @param type The new value for this attribute.
* @return This object (for method chaining).
*/
public final Script type(String type) {
attr("type", type);
return this;
}
//-----------------------------------------------------------------------------------------------------------------
// Overridden methods
//-----------------------------------------------------------------------------------------------------------------
@Override /* HtmlElement */
public final Script _class(String _class) {
super._class(_class);
return this;
}
@Override /* HtmlElement */
public final Script id(String id) {
super.id(id);
return this;
}
@Override /* HtmlElementText */
public Script text(Object text) {
super.text(text);
return this;
}
}