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

org.w3c.css.parser.AtRulePhoneticAlphabet Maven / Gradle / Ivy

The newest version!
//
// $Id: AtRulePhoneticAlphabet.java,v 1.2 2007-11-26 05:07:17 ot Exp $
// From Philippe Le Hegaret ([email protected])
//
// (c) COPYRIGHT MIT and INRIA, 1997.
// Please first read the full copyright statement in file COPYRIGHT.html
/*
 * AtRulePhoneticAlphabet.java
 * $Id: AtRulePhoneticAlphabet.java,v 1.2 2007-11-26 05:07:17 ot Exp $
 */
package org.w3c.css.parser;

import org.w3c.css.util.ApplContext;

/**
 *
 * @version $Revision: 1.2 $
 * @author  Philippe Le Hegaret
 */
public class AtRulePhoneticAlphabet extends AtRule {
    static int internal = 0;
    int hash;
    String alphabet = "ipa";

    /**
     * Create a new AtRulePhoneticAlphabet
     */
    public AtRulePhoneticAlphabet() {
       hash = ++internal;
    }


    /**
     * Returns the at rule keyword
     */
    public String keyword() {
		return "phonetic-alphabet";
    }

    public void addAlphabet(String alphabet, ApplContext ac) {
		this.alphabet = alphabet;
	}

    /**
     * The second must be exactly the same of this one
     */
    public boolean canApply(AtRule atRule) {
		return (atRule instanceof AtRulePhoneticAlphabet);
    }

    /**
     * Return true if other is an instance of AtRUlePhoneticAlphabet
     */
    public boolean equals(Object other) {
		return (other instanceof AtRulePhoneticAlphabet);
    }

    /**
     * The second must only match this one
     */
    public boolean canMatched(AtRule atRule) {
		return (atRule instanceof AtRulePhoneticAlphabet);
    }

    /**
     * Returns a string representation of the object.
     */
    public String toString() {
		return "@" + keyword() + " " + alphabet;
    }

    public int hashCode() {
		return hash;
    }

	public boolean isEmpty() {
		return true;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy