package org.jetbrains.jps.builders;
-public abstract class ModuleBasedBuildTargetType<T extends ModuleBasedTarget<?>> extends BuildTargetType<T>{
+public abstract class ModuleBasedBuildTargetType<T extends ModuleBasedTarget<?>> extends BuildTargetType<T> implements ModuleInducedTargetType {
protected ModuleBasedBuildTargetType(String typeId) {
super(typeId);
}
--- /dev/null
+/*
+ * Copyright 2000-2015 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 org.jetbrains.jps.builders;
+
+/**
+ * Marker interface for {@link org.jetbrains.jps.builders.BuildTargetType}'s implementations. It instructs the external build process
+ * to skip building for targets of this type if all modules were compiled during previous build session and no source files were changed
+ * after that.
+ * @author nik
+ */
+public interface ModuleInducedTargetType {
+}
typeRegistry = TargetTypeRegistry.getInstance();
}
final BuildTargetType<?> targetType = typeRegistry.getTargetType(typeId);
- if (targetType != null && !(targetType instanceof ModuleBasedBuildTargetType)) {
+ if (targetType != null && !(targetType instanceof ModuleInducedTargetType)) {
return false;
}
}