001: /*
002: * Copyright (c) 2002-2008 Gargoyle Software Inc. All rights reserved.
003: *
004: * Redistribution and use in source and binary forms, with or without
005: * modification, are permitted provided that the following conditions are met:
006: *
007: * 1. Redistributions of source code must retain the above copyright notice,
008: * this list of conditions and the following disclaimer.
009: * 2. Redistributions in binary form must reproduce the above copyright notice,
010: * this list of conditions and the following disclaimer in the documentation
011: * and/or other materials provided with the distribution.
012: * 3. The end-user documentation included with the redistribution, if any, must
013: * include the following acknowledgment:
014: *
015: * "This product includes software developed by Gargoyle Software Inc.
016: * (http://www.GargoyleSoftware.com/)."
017: *
018: * Alternately, this acknowledgment may appear in the software itself, if
019: * and wherever such third-party acknowledgments normally appear.
020: * 4. The name "Gargoyle Software" must not be used to endorse or promote
021: * products derived from this software without prior written permission.
022: * For written permission, please contact info@GargoyleSoftware.com.
023: * 5. Products derived from this software may not be called "HtmlUnit", nor may
024: * "HtmlUnit" appear in their name, without prior written permission of
025: * Gargoyle Software Inc.
026: *
027: * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,
028: * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
029: * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GARGOYLE
030: * SOFTWARE INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
031: * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
032: * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
033: * OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
034: * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
035: * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
036: * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
037: */
038: package com.gargoylesoftware.htmlunit.javascript.host;
039:
040: /**
041: * A javascript object for a document.navigator.plugins.
042: * @version $Revision: 2144 $
043: * @author Marc Guillemot
044: *
045: * @see <a href="http://www.xulplanet.com/references/objref/MimeTypeArray.html">XUL Planet</a>
046: */
047: public class Plugin extends SimpleArray {
048: private static final long serialVersionUID = -6829501824595761156L;
049: private String description_;
050: private String filename_;
051: private String name_;
052:
053: /**
054: * Create an instance. Javascript objects must have a default constructor.
055: */
056: public Plugin() {
057: // nothing
058: }
059:
060: /**
061: * C'tor initializing fields
062: * @param name the plugin name
063: * @param description the plugin description
064: * @param filename the plugin filename
065: */
066: public Plugin(final String name, final String description,
067: final String filename) {
068: name_ = name;
069: description_ = description;
070: filename_ = filename;
071: }
072:
073: /**
074: * Get the name of the mime type
075: * @param element a {@link MimeType}.
076: * @return the name
077: */
078: protected String getItemName(final Object element) {
079: return ((MimeType) element).jsxGet_type();
080: }
081:
082: /**
083: * Gets the plugin's description
084: * @return the description.
085: */
086: public String jsxGet_description() {
087: return description_;
088: }
089:
090: /**
091: * Gets the plugin's file name
092: * @return the file name.
093: */
094: public String jsxGet_filename() {
095: return filename_;
096: }
097:
098: /**
099: * Gets the plugin's name
100: * @return the name.
101: */
102: public String jsxGet_name() {
103: return name_;
104: }
105: }
|