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

org.schema.WebApplication Maven / Gradle / Ivy

There is a newer version: 3.1.8
Show newest version
package org.schema;

/**
 * Schema.org/WebApplication
 * Web applications.
 *
 * @author schema.org
 * @class WebApplication
 * @module org.schema
 * @extends SoftwareApplication
 */
public class WebApplication extends SoftwareApplication {
	/**
	 * Schema.org/browserRequirements
	 * Specifies browser requirements in human-readable text. For example, 'requires HTML5 support'.
	 *
	 * @property browserRequirements
	 * @type Text
	 */
	public String browserRequirements;

	/**
	 * Constructor, automatically sets @context and @type.
	 *
	 * @constructor
	 */
	public WebApplication() {
		context = "http://schema.org/";
		type = "WebApplication";
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy