mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
artifacts editor: create manifest file if needed, highlighting fixed
This commit is contained in:
@@ -45,11 +45,9 @@ public interface ArtifactEditorContext extends PackagingElementResolvingContext
|
||||
@Nullable
|
||||
ModifiableModuleModel getModifiableModuleModel();
|
||||
|
||||
@NotNull
|
||||
@Nullable
|
||||
ManifestFileConfiguration getManifestFile(CompositePackagingElement<?> element, ArtifactType artifactType);
|
||||
|
||||
boolean isManifestFile(String path);
|
||||
|
||||
|
||||
CompositePackagingElement<?> getRootElement(@NotNull Artifact artifact);
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ public class ManifestFileConfiguration {
|
||||
copyFrom(configuration);
|
||||
}
|
||||
|
||||
public ManifestFileConfiguration(@Nullable List<String> classpath, @Nullable String mainClass, @Nullable String manifestFilePath) {
|
||||
public ManifestFileConfiguration(@NotNull String manifestFilePath, @Nullable List<String> classpath, @Nullable String mainClass) {
|
||||
if (classpath != null) {
|
||||
myClasspath.addAll(classpath);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user