blob: 3767f9ff98dcb9fc89fe72c711c2837f0436df76 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ant.internal.ui.editor.model;
import org.apache.tools.ant.BuildException;
import org.apache.tools.ant.Task;
import org.eclipse.ant.internal.ui.model.AntUIImages;
import org.eclipse.ant.internal.ui.model.IAntUIConstants;
import org.eclipse.jface.resource.ImageDescriptor;
import org.xml.sax.Attributes;
public class AntPropertyNode extends AntTaskNode {
private String fValue= null;
public AntPropertyNode(Task task, Attributes attributes) {
super(task);
String label = attributes.getValue(IAntModelConstants.ATTR_NAME);
if(label == null) {
label = attributes.getValue(IAntModelConstants.ATTR_FILE);
if(label != null) {
label= "file="+label; //$NON-NLS-1$
} else {
label = attributes.getValue(IAntModelConstants.ATTR_RESOURCE);
if (label != null) {
label= "resource="+label; //$NON-NLS-1$
} else {
label = attributes.getValue(IAntModelConstants.ATTR_ENVIRONMENT);
if(label != null) {
label= "environment=" + label; //$NON-NLS-1$
}
}
}
} else {
fValue= attributes.getValue(IAntModelConstants.ATTR_VALUE);
}
setLabel(label);
}
public String getValue() {
return fValue;
}
/* (non-Javadoc)
* @see org.eclipse.ant.internal.ui.editor.model.AntElementNode#getBaseImageDescriptor()
*/
protected ImageDescriptor getBaseImageDescriptor() {
return AntUIImages.getImageDescriptor(IAntUIConstants.IMG_PROPERTY);
}
/**
* Sets the property in the project.
*/
public boolean configure(boolean validateFully) {
if (configured) {
return false;
}
try {
getTask().maybeConfigure();
getTask().execute();
configured= true;
} catch (BuildException be) {
getAntModel().handleBuildException(be, this);
}
return false;
}
}