IDEA-25499: artifacts config: UI for easy configuration of exploded wars
[fedora-idea.git] / java / compiler / openapi / src / com / intellij / packaging / artifacts / ArtifactTemplate.java
blobb39bd8ac69928273b44b11ae2adeb6f5cdf22595
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.packaging.artifacts;
18 import com.intellij.packaging.elements.CompositePackagingElement;
19 import org.jetbrains.annotations.NotNull;
20 import org.jetbrains.annotations.Nullable;
22 /**
23 * @author nik
25 public abstract class ArtifactTemplate {
27 public abstract String getPresentableName();
29 /**
30 * @deprecated override {@link #createArtifact()} instead
32 @Deprecated
33 public CompositePackagingElement<?> createRootElement(@NotNull String artifactName) {
34 return null;
37 /**
38 * @deprecated override {@link #createArtifact()} instead
40 @Deprecated
41 @NotNull
42 public String suggestArtifactName() {
43 return "unnamed";
46 @Nullable
47 public NewArtifactConfiguration createArtifact() {
48 final String name = suggestArtifactName();
49 return new NewArtifactConfiguration(createRootElement(name), name, null);
52 public static class NewArtifactConfiguration {
53 private final CompositePackagingElement<?> myRootElement;
54 private final String myArtifactName;
55 private final ArtifactType myArtifactType;
57 public NewArtifactConfiguration(CompositePackagingElement<?> rootElement, String artifactName, ArtifactType artifactType) {
58 myRootElement = rootElement;
59 myArtifactName = artifactName;
60 myArtifactType = artifactType;
63 public CompositePackagingElement<?> getRootElement() {
64 return myRootElement;
67 public String getArtifactName() {
68 return myArtifactName;
71 public ArtifactType getArtifactType() {
72 return myArtifactType;