blob: a534d710b9ef619aab9904fd531493f05984698b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 xored software, Inc.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* xored software, Inc. - initial API and Implementation (Alex Panchenko)
*******************************************************************************/
package org.eclipse.dltk.ruby.formatter.lexer;
public class StringType {
public static final StringType STRING = new StringType("STRING", false);
public static final StringType HEREDOC_STRING = new StringType(
"HEREDOC_STRING", true);
public static final StringType XSTRING = new StringType("XSTRING", false);
public static final StringType HEREDOC_XSTRING = new StringType(
"HEREDOC_XSTRING", true);
public static final StringType REGEXP = new StringType("REGEXP", false);
private final String name;
private final boolean heredoc;
private StringType(String name, boolean heredoc) {
this.name = name;
this.heredoc = heredoc;
}
public boolean isHeredoc() {
return heredoc;
}
public String toString() {
return name;
}
}