blob: 04f3ba5c3dd31d20c90e19bf9c91797e72e8362a [file] [log] [blame]
/*
* Copyright 2000-2009 JetBrains s.r.o.
*
* 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.intellij.lang.ant.config.impl;
import com.intellij.lang.ant.config.AntBuildTarget;
import com.intellij.openapi.util.JDOMExternalizable;
import com.intellij.openapi.util.WriteExternalException;
import org.jdom.Element;
import org.jetbrains.annotations.NonNls;
public final class TargetFilter implements JDOMExternalizable {
@NonNls private static final String FILTER_TARGET_NAME = "targetName";
@NonNls private static final String FILTER_IS_VISIBLE = "isVisible";
private String myTargetName;
private boolean myVisible;
private String myDescription = "";
public TargetFilter() {}
public TargetFilter(String targetName, boolean isVisible) {
myTargetName = targetName;
myVisible = isVisible;
}
public String getTargetName() {
return myTargetName;
}
public boolean isVisible() {
return myVisible;
}
public void setVisible(boolean isVisible) {
myVisible = isVisible;
}
public void readExternal(Element element) {
myTargetName = element.getAttributeValue(FILTER_TARGET_NAME);
myVisible = Boolean.valueOf(element.getAttributeValue(FILTER_IS_VISIBLE));
}
public void writeExternal(Element element) throws WriteExternalException {
final String targetName = getTargetName();
if (targetName == null) {
// incomplete tag
throw new WriteExternalException();
}
element.setAttribute(FILTER_TARGET_NAME, targetName);
element.setAttribute(FILTER_IS_VISIBLE, Boolean.valueOf(isVisible()).toString());
}
public String getDescription() {
return myDescription;
}
public void updateDescription(AntBuildTarget target) {
if (target == null) return;
myDescription = target.getNotEmptyDescription();
}
public static TargetFilter fromTarget(AntBuildTarget target) {
TargetFilter filter = new TargetFilter(target.getName(), target.isDefault());
filter.myDescription = target.getNotEmptyDescription();
filter.myVisible = (filter.myDescription != null);
return filter;
}
}