X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/core/ClasspathVariableInitializer.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/core/ClasspathVariableInitializer.java index 38a8934..a8fd2f2 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/core/ClasspathVariableInitializer.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/core/ClasspathVariableInitializer.java @@ -19,36 +19,37 @@ import org.eclipse.core.runtime.IProgressMonitor; * Classpath variable initializers are used in conjunction with the * "net.sourceforge.phpdt.core.classpathVariableInitializer" extension point. *

- * Clients should subclass this class to implement a specific classpath - * variable initializer. The subclass must have a public 0-argument - * constructor and a concrete implementation of initialize. + * Clients should subclass this class to implement a specific classpath variable + * initializer. The subclass must have a public 0-argument constructor and a + * concrete implementation of initialize. * * @see IClasspathEntry * @since 2.0 */ public abstract class ClasspathVariableInitializer { - /** - * Creates a new classpath variable initializer. - */ - public ClasspathVariableInitializer() { - } + /** + * Creates a new classpath variable initializer. + */ + public ClasspathVariableInitializer() { + } - /** - * Binds a value to the workspace classpath variable with the given name, - * or fails silently if this cannot be done. - *

- * A variable initializer is automatically activated whenever a variable value - * is needed and none has been recorded so far. The implementation of - * the initializer can set the corresponding variable using - * JavaCore#setClasspathVariable. - * - * @param variable the name of the workspace classpath variable - * that requires a binding - * - * @see JavaCore#getClasspathVariable(String) - * @see JavaCore#setClasspathVariable(String, IPath, IProgressMonitor) - * @see JavaCore#setClasspathVariables(String[], IPath[], IProgressMonitor) - */ - public abstract void initialize(String variable); + /** + * Binds a value to the workspace classpath variable with the given name, or + * fails silently if this cannot be done. + *

+ * A variable initializer is automatically activated whenever a variable + * value is needed and none has been recorded so far. The implementation of + * the initializer can set the corresponding variable using + * JavaCore#setClasspathVariable. + * + * @param variable + * the name of the workspace classpath variable that requires a + * binding + * + * @see JavaCore#getClasspathVariable(String) + * @see JavaCore#setClasspathVariable(String, IPath, IProgressMonitor) + * @see JavaCore#setClasspathVariables(String[], IPath[], IProgressMonitor) + */ + public abstract void initialize(String variable); }