Open Source
efactor.txt
Associated article: Factoring for Eclipse
Tags: Open Source
Published source code example accompanying the article by Marcus Kestler in which he applies Eclipse's Factor by Flow and Factor by Dependency approaches to decomposing plug-ins, letting you produce efficient, community-friendly plug-ins. Also see EFACTOR.ZIP.
Factoring For Eclipse
by Marcus Kestler
Listing One
package com.kestler.metrics;
import org.eclipse.core.runtime.IAdaptable;
/** @author Marcus Kestler. This Interface defines a metric. */
public interface IMetric extends IAdaptable {
/** The event id for REFRESH. This will be called ...


