Author: rob.stryker(a)jboss.com
Date: 2007-05-04 21:07:43 -0400 (Fri, 04 May 2007)
New Revision: 2006
Modified:
trunk/core/plugins/org.jboss.ide.eclipse.archives.core/src/main/org/jboss/ide/eclipse/archives/core/model/internal/ArchiveFileSetImpl.java
Log:
fileset bug... was not rescanning on model changes
Modified:
trunk/core/plugins/org.jboss.ide.eclipse.archives.core/src/main/org/jboss/ide/eclipse/archives/core/model/internal/ArchiveFileSetImpl.java
===================================================================
---
trunk/core/plugins/org.jboss.ide.eclipse.archives.core/src/main/org/jboss/ide/eclipse/archives/core/model/internal/ArchiveFileSetImpl.java 2007-05-04
23:27:48 UTC (rev 2005)
+++
trunk/core/plugins/org.jboss.ide.eclipse.archives.core/src/main/org/jboss/ide/eclipse/archives/core/model/internal/ArchiveFileSetImpl.java 2007-05-05
01:07:43 UTC (rev 2006)
@@ -165,6 +165,7 @@
public void setExcludesPattern(String excludes) {
attributeChanged(EXCLUDES_ATTRIBUTE, getExcludesPattern(), excludes);
filesetDelegate.setExcludes(excludes);
+ rescanRequired = true;
}
/*
@@ -173,6 +174,7 @@
public void setIncludesPattern(String includes) {
attributeChanged(INCLUDES_ATTRIBUTE, getIncludesPattern(), includes);
filesetDelegate.setIncludes(includes);
+ rescanRequired = true;
}
/*
@@ -181,6 +183,7 @@
public void setInWorkspace(boolean isInWorkspace) {
attributeChanged(IN_WORKSPACE_ATTRIBUTE, new Boolean(isInWorkspace()), new
Boolean(isInWorkspace));
filesetDelegate.setInWorkspace(isInWorkspace);
+ rescanRequired = true;
}
/*
@@ -191,6 +194,7 @@
IPath src = getGlobalSourcePath();
attributeChanged(SOURCE_PATH_ATTRIBUTE, src == null ? null : src.toString(), path ==
null ? null : path.toString());
filesetDelegate.setDir(path.toString());
+ rescanRequired = true;
}
protected XbFileSet getFileSetDelegate () {
Show replies by date