/* * Copyright 2013-2016 consulo.io * * 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 consulo.sandboxPlugin.ide.module; import com.intellij.lang.Language; import com.intellij.openapi.module.Module; import com.intellij.psi.PsiManager; import com.intellij.psi.impl.file.PsiPackageBase; import com.intellij.util.ArrayFactory; import consulo.annotations.RequiredReadAction; import consulo.module.extension.ModuleExtension; import consulo.psi.PsiPackage; import consulo.psi.PsiPackageManager; import consulo.psi.PsiPackageSupportProvider; import consulo.sandboxPlugin.ide.module.extension.Sand2ModuleExtension; import consulo.sandboxPlugin.lang.SandLanguage; import org.jetbrains.annotations.NotNull; /** * @author VISTALL * @since 30.08.14 */ public class Sand2PackageProvider implements PsiPackageSupportProvider { @Override public boolean isSupported(@NotNull ModuleExtension moduleExtension) { return moduleExtension instanceof Sand2ModuleExtension; } @Override public boolean isValidPackageName(@NotNull Module module, @NotNull String packageName) { return true; } @NotNull @Override public PsiPackage createPackage(@NotNull PsiManager psiManager, @NotNull PsiPackageManager packageManager, @NotNull Class<? extends ModuleExtension> extensionClass, @NotNull String packageName) { return new PsiPackageBase(psiManager, packageManager, extensionClass, packageName) { @Override protected ArrayFactory<? extends PsiPackage> getPackageArrayFactory() { return PsiPackage.ARRAY_FACTORY; } @RequiredReadAction @NotNull @Override public Language getLanguage() { return SandLanguage.INSTANCE; } }; } }