org.apache.maven.plugin.doap.options
Class Standard

java.lang.Object
  extended by org.apache.maven.plugin.doap.options.Standard
All Implemented Interfaces:
Serializable

public class Standard
extends Object
implements Serializable

The "Standard" element is used to list all the relevant standards implemented by the project. These standards include W3C or ISO standards, RFCs, various technical specifications etc. Example:

 <asfext:implements>
   <asfext:Standard>
     <asfext:title>Extensible
 Stylesheet Language - Formatting Objects (XSL-FO
 1.1)</asfext:title>
     <asfext:body>W3C</asfext:body>
     <asfext:id>XSL
 1.1</asfext:id>
     <asfext:url
 rdf:resource="http://www.w3.org/TR/xsl11/"/>
   </asfext:Standard>
 </asfext:implements>
 

Version:
$Revision: 815337 $ $Date: 2012-05-01 21:52:10 +0000 (Tue, 01 May 2012) $
See Also:
http://projects.apache.org/docs/standards.html, Serialized Form

Constructor Summary
Standard()
           
 
Method Summary
 boolean equals(Object other)
          Method equals.
 String getBody()
          Get the body which published the standard (Example: "W3C", "OASIS", "ISO" etc.).
 String getId()
          Get an identifier for the standard (Example: ISO/IEC 15438, RFC2397, JSR206 etc.).
 String getTitle()
          Get the expanded title of the standard.
 String getUrl()
          Get an URL pointing to the standard (main website or specification document).
 int hashCode()
          Method hashCode.
 void setBody(String body)
          Set the body which published the standard (Example: "W3C", "OASIS", "ISO" etc.).
 void setId(String id)
          Set an identifier for the standard (Example: ISO/IEC 15438, RFC2397, JSR206 etc.).
 void setTitle(String title)
          Set the expanded title of the standard.
 void setUrl(String url)
          Set an URL pointing to the standard (main website or specification document).
 String toString()
          Method toString.
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

Standard

public Standard()
Method Detail

equals

public boolean equals(Object other)
Method equals.

Overrides:
equals in class Object
Parameters:
other -
Returns:
boolean

getBody

public String getBody()
Get the body which published the standard (Example: "W3C", "OASIS", "ISO" etc.). Required.

Returns:
String
See Also:
http://projects.apache.org/docs/standards.html

getId

public String getId()
Get an identifier for the standard (Example: ISO/IEC 15438, RFC2397, JSR206 etc.). Required.

Returns:
String
See Also:
http://projects.apache.org/docs/standards.html

getTitle

public String getTitle()
Get the expanded title of the standard. Required.

Returns:
String
See Also:
http://projects.apache.org/docs/standards.html

getUrl

public String getUrl()
Get an URL pointing to the standard (main website or specification document). Optional.

Returns:
String
See Also:
http://projects.apache.org/docs/standards.html

hashCode

public int hashCode()
Method hashCode.

Overrides:
hashCode in class Object
Returns:
int

setBody

public void setBody(String body)
Set the body which published the standard (Example: "W3C", "OASIS", "ISO" etc.). Required.

Parameters:
body -
See Also:
http://projects.apache.org/docs/standards.html

setId

public void setId(String id)
Set an identifier for the standard (Example: ISO/IEC 15438, RFC2397, JSR206 etc.). Required.

Parameters:
id -
See Also:
http://projects.apache.org/docs/standards.html

setTitle

public void setTitle(String title)
Set the expanded title of the standard. Required.

Parameters:
title -
See Also:
http://projects.apache.org/docs/standards.html

setUrl

public void setUrl(String url)
Set an URL pointing to the standard (main website or specification document). Optional.

Parameters:
url -
See Also:
http://projects.apache.org/docs/standards.html

toString

public String toString()
Method toString.

Overrides:
toString in class Object
Returns:
String


Copyright © 2002-2011 The Apache Software Foundation. All Rights Reserved.