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

com.jwebmp.plugins.dynamicsourcecode.DynamicSourceCodePageConfigurator Maven / Gradle / Ivy

There is a newer version: 0.59.0.14
Show newest version
/*
 * Copyright (C) 2017 Marc Magon
 *
 * This program 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 3 of the License, or
 * (at your option) any later version.
 *
 * This program 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, see .
 */
package com.jwebmp.plugins.dynamicsourcecode;

import com.jwebmp.core.Page;
import com.jwebmp.core.plugins.PluginInformation;
import com.jwebmp.core.services.IPageConfigurator;

import javax.validation.constraints.NotNull;

/**
 * @author GedMarc
 * @since 28 Feb 2017
 */
@PluginInformation(pluginName = "Source Code View",
		pluginUniqueName = "jw-source-code-viewer",
		pluginDescription = "A basic screen with buttons to load sources, a format drop down, and a source display screen. Completely themable with a switch",
		pluginVersion = "1.0.0",
		pluginDependancyUniqueIDs = "jquery,google-code-prettify",
		pluginCategories = "jquery, ui, source display, web, framework",
		pluginSubtitle = "A custom built widget that provides a source code viewer, which will load and display source from pretty much anywhere",
		pluginGitUrl = "https://github.com/GedMarc/JWebSwing-DynamicSourceCodeViewerPlugin",
		pluginSourceUrl = "https://github.com/GedMarc/JWebSwing-DynamicSourceCodeViewerPlugin",
		pluginWikiUrl = "https://github.com/GedMarc/JWebSwing-DynamicSourceCodeViewerPlugin/wiki",
		pluginOriginalHomepage = "http://www.jwebswing.com/",
		pluginIconUrl = "dynamicSourceCodeFetcher/dynamicviewerlogo.png",
		pluginIconImageUrl = "dynamicSourceCodeFetcher/dynamicviewerlogo.png",
		pluginDownloadUrl = "https://sourceforge.net/projects/jwebswing/files/plugins/DynamicSourceCodeViewerPlugin.jar/download",
		pluginCommercial = false)
@SuppressWarnings("unused")
public class DynamicSourceCodePageConfigurator
		implements IPageConfigurator
{

	private static final long serialVersionUID = 1L;

	/**
	 * The source page configurator
	 */
	public DynamicSourceCodePageConfigurator()
	{
		//Nothing needed
	}

	@NotNull
	@Override
	public Page configure(Page page)
	{
		return page;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy