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

com.diffplug.spotless.extra.eclipse.base.SpotlessEclipseConfig Maven / Gradle / Ivy

There is a newer version: 3.5.2
Show newest version
/*
 * Copyright 2016 DiffPlug
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.diffplug.spotless.extra.eclipse.base;

/**
 * Obtain configuration for Eclipse framework setup
 * 

* The setup consitst of 4 phases: *

    *
  1. Registration of framework bundles
  2. *
  3. Registration of servicves
  4. *
  5. Resitration of extension points, activation of bundles/plugins
  6. *
  7. Customize bundle/plugin configuration
  8. *
*/ public interface SpotlessEclipseConfig { default public void registerBundles(SpotlessEclipseCoreConfig config) { config.applyDefault(); } default public void registerServices(SpotlessEclipseServiceConfig config) { config.applyDefault(); } default public void activatePlugins(SpotlessEclipsePluginConfig config) { config.applyDefault(); } default public void customize() {} }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy