obsolete code removed
[fedora-idea.git] / java / compiler / impl / src / com / intellij / compiler / make / ExplodedAndJarBuildGenerator.java
bloba4e462a14c3dd5e4e08a948903ee99a8527c7220
1 /*
2 * Copyright 2000-2009 JetBrains s.r.o.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
16 package com.intellij.compiler.make;
18 import com.intellij.compiler.ant.Tag;
19 import com.intellij.compiler.ant.ExplodedAndJarTargetParameters;
20 import com.intellij.compiler.ant.taskdefs.ZipFileSet;
21 import com.intellij.openapi.compiler.make.BuildInstruction;
22 import com.intellij.openapi.extensions.ExtensionPointName;
23 import com.intellij.openapi.util.Ref;
24 import org.jetbrains.annotations.Nullable;
25 import org.jetbrains.annotations.NotNull;
27 /**
28 * @author peter
30 public abstract class ExplodedAndJarBuildGenerator {
31 public static final ExtensionPointName<ExplodedAndJarBuildGenerator> EP_NAME = ExtensionPointName.create("com.intellij.explodedAndJarBuildGenerator");
33 @Nullable
34 public Tag[] generateTagsForExplodedTarget(@NotNull BuildInstruction instruction, @NotNull ExplodedAndJarTargetParameters parameters,
35 final int instructionCount)
36 throws Exception {
37 return null;