All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.w3c.dom.html.HTMLMetaElement Maven / Gradle / Ivy

The newest version!
// Copyright (c) 1998 by W3C
//
// DOM is a trademark of W3C
// The DOM level 1 specification, from which this
// source is derived, is copyright by W3C.
// See: http://www.w3.org/TR/REC-DOM-Level-1/
//

package org.w3c.dom.html;

import org.w3c.dom.*;

/**

  

This contains generic meta-information about the document. See the META element definition in HTML 4.0.


Property Summary
 content getContent setContent

Associated information. See the content attribute definition in HTML 4.0.

 httpEquiv getHttpEquiv setHttpEquiv

HTTP response header name. See the http-equiv attribute definition in HTML 4.0.

 name getName setName

Meta information name. See the name attribute definition in HTML 4.0.

 scheme getScheme setScheme

Select form of content. See the scheme attribute definition in HTML 4.0.

  */ public interface HTMLMetaElement extends HTMLElement { /** Assigns the value of the content property. */ void setContent (String content); /** * Returns the value of the content property. */ String getContent (); /** Assigns the value of the httpEquiv property. */ void setHttpEquiv (String httpEquiv); /** * Returns the value of the httpEquiv property. */ String getHttpEquiv (); /** Assigns the value of the name property. */ void setName (String name); /** * Returns the value of the name property. */ String getName (); /** Assigns the value of the scheme property. */ void setScheme (String scheme); /** * Returns the value of the scheme property. */ String getScheme (); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy