blob: c89a3f8bf35d8f6e0071dfb41ac20c5d0e13ef00 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2008 Tasktop Technologies and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Eike Stepper - initial API and implementation
* Tasktop Technologies - improvements
*******************************************************************************/
package org.eclipse.mylyn.team.ui;
import org.eclipse.mylyn.tasks.core.ITask;
/**
* @author Eike Stepper
* @author Mik Kersten
* @since 2.0
*/
public abstract class AbstractCommitTemplateVariable {
protected String description;
protected String recognizedKeyword;
public String getDescription() {
return description != null ? description : "Handler for '" + recognizedKeyword + "'"; //$NON-NLS-1$ //$NON-NLS-2$
}
public void setDescription(String description) {
this.description = description;
}
public String getRecognizedKeyword() {
return recognizedKeyword;
}
/**
* @since 3.0
*/
public abstract String getValue(ITask task);
public void setRecognizedKeyword(String recognizedKeyword) {
if (recognizedKeyword == null) {
throw new IllegalArgumentException("Keyword to recognize must not be null"); //$NON-NLS-1$
}
this.recognizedKeyword = recognizedKeyword;
}
}