blob: 4d7250227eeb07d2cd6a50c8fa783eff40cd2bba [file] [log] [blame]
/*
* Copyright (C) 2019 The Android Open Source Project
*
* 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 com.android.tools.idea.apk;
import static com.android.SdkConstants.EXT_DEX;
import com.intellij.openapi.fileTypes.FileType;
import com.intellij.openapi.vfs.VirtualFile;
import icons.StudioIcons;
import javax.swing.Icon;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
public class DexFileType implements FileType {
public static final DexFileType INSTANCE = new DexFileType();
@NotNull
@Override
public String getName() {
return "DEX";
}
@NotNull
@Override
public String getDescription() {
return "Android DEX file";
}
@NotNull
@Override
public String getDefaultExtension() {
return EXT_DEX;
}
@Nullable
@Override
public Icon getIcon() {
return StudioIcons.Shell.Filetree.ANDROID_FILE;
}
@Override
public boolean isBinary() {
return true;
}
@Override
public boolean isReadOnly() {
return true;
}
@Nullable
@Override
public String getCharset(@NotNull VirtualFile file, @NotNull byte[] content) {
return null;
}
}