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

com.itranswarp.search.Phrase Maven / Gradle / Ivy

The newest version!
package com.itranswarp.search;

class Phrase extends Span {

	public Phrase(String text) {
		super(text);
	}

	@Override
	public boolean equals(Object o) {
		if (o instanceof Phrase) {
			Phrase p = (Phrase) o;
			return this.text.equals(p.text);
		}
		return false;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy