/* * Copyright 2000-2014 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. */ /* * Created by IntelliJ IDEA. * User: yole * Date: 17.11.2006 * Time: 17:36:42 */ package com.intellij.openapi.vcs.changes.patch; import com.intellij.icons.AllIcons; import com.intellij.openapi.fileTypes.FileType; import com.intellij.openapi.vcs.VcsBundle; import com.intellij.openapi.vfs.VfsUtil; import com.intellij.openapi.vfs.VirtualFile; import org.jetbrains.annotations.NonNls; import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; import javax.swing.*; import java.io.File; public class PatchFileType implements FileType { public static final PatchFileType INSTANCE = new PatchFileType(); public static final String NAME = "PATCH"; @NotNull @NonNls public String getName() { return NAME; } @NotNull public String getDescription() { return VcsBundle.message("patch.file.type.description"); } @NotNull @NonNls public String getDefaultExtension() { return "patch"; } @Nullable public Icon getIcon() { return AllIcons.Nodes.Pointcut; } public boolean isBinary() { return false; } public boolean isReadOnly() { return false; } @Nullable @NonNls public String getCharset(@NotNull VirtualFile file, @NotNull final byte[] content) { return null; } public static boolean isPatchFile(@Nullable VirtualFile vFile) { return vFile != null && vFile.getFileType() == PatchFileType.INSTANCE; } public static boolean isPatchFile(@NotNull File file) { return isPatchFile(VfsUtil.findFileByIoFile(file, true)); } }