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

org.fife.rtext.lang.LanguageSupportFactory Maven / Gradle / Ivy

Go to download

RText is a powerful, cross-platform programmer's text editor written in Java. It is designed to be easy to use, highly customizable and flexible. Part of RText's design is for the source code to be simple, easy to understand, and well documented, so that other programmers can look into its inner-workings and figure out how RText ticks with ease. A good place to start (besides the source code) is the Javadoc for all classes used in the project.

There is a newer version: 2.0.7
Show newest version
/*
 * 11/01/2009
 *
 * LanguageSupportFactory.java - Manages extra language support.
 * Copyright (C) 2009 Robert Futrell
 * robert_futrell at users.sourceforge.net
 * http://rtext.fifesoft.com
 *
 * This file is a part of RText.
 *
 * RText is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or any later version.
 *
 * RText is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 */
package org.fife.rtext.lang;

import org.fife.ui.rsyntaxtextarea.SyntaxConstants;


/**
 * Manages language supports.
 *
 * @author Robert Futrell
 * @version 1.0
 */
public class LanguageSupportFactory {

	private static final LanguageSupportFactory INSTANCE =
									new LanguageSupportFactory();


	/**
	 * Private constructor to prevent instantiation.
	 */
	private LanguageSupportFactory() {
		
	}


	/**
	 * Returns the singleton instance of this class.
	 *
	 * @return The singleton instance.
	 */
	public static LanguageSupportFactory get() {
		return INSTANCE;
	}


	/**
	 * Gets the support for a specified language.
	 *
	 * @param language The programming language.  This should be one of the
	 *        values defined in {@link SyntaxConstants}.
	 * @return The support for the language, or null if none.
	 */
	public LanguageSupport getSupport(String language) {
		return null;
	}


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy